12345678910111213141516171819 |
- version: '3.4'
- services:
- setgithubsecret:
- image: jianboy/setgithubsecret:latest
- build:
- context: .
- dockerfile: ./Dockerfile
- command: ["sh", "-c", "pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 -m flask run --no-debugger --no-reload --host 0.0.0.0 --port 5002"]
- ports:
- - 5002:5002
- environment:
- - FLASK_APP=web\app.py
- - FLASK_DEBUG=1
- volumes:
- - .:/app
- networks:
- default:
|