wordle-solver / api_rest /docker-compose.yml
santit96's picture
Dockerize the api rest app
d5ef8f7
raw
history blame
363 Bytes
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