diff options
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r-- | docker-compose.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml index a1e0db8..7692ef9 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,9 +1,12 @@ services: web: # image: haircode/alphabetlearning:latest - build: . + build: + context: . + network: host ports: - "8020:8020" volumes: - .:/app command: uv run manage.py runserver 0.0.0.0:8020 + |