diff options
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r-- | docker-compose.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..417d8ad --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,8 @@ +services: + web: + build: . + ports: + - "8020:8020" + volumes: + - .:/app + command: uv run manage.py runserver 0.0.0.0:8020 |