Spaces:
Sleeping
Sleeping
File size: 363 Bytes
d5ef8f7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
services:
web:
build:
context: "../"
dockerfile: './api_rest/Dockerfile'
args:
- "UID=${UID:-1000}"
- "GID=${GID:-1000}"
- "FLASK_DEBUG=${FLASK_DEBUG:-false}"
env_file:
- "../.env"
restart: unless-stopped
stop_grace_period: "3s"
tty: true
ports:
- 8000:8000
expose:
- 8000
|