Spaces:
Sleeping
Sleeping
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 | |