Files
django-q2/web-docker-compose.yaml
2022-10-20 15:17:44 +02:00

12 lines
186 B
YAML

version: '3'
services:
web:
restart: always
command: python manage.py runserver 0.0.0.0:8000
ports:
- "127.0.0.1:8000:8000"
build: .
volumes:
- .:/app