Files
rengine/docker-compose.yml
T
2020-05-04 14:59:12 +05:30

11 lines
157 B
YAML

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