Files
sf_lactorapi/docker-compose.yml

12 lines
329 B
YAML

version: '2'
services:
web:
build: .
restart: always
command: bash -c "sed -i 's/staticfiles/static/g' /usr/local/lib/python3.8/site-packages/rest_framework_swagger/templates/rest_framework_swagger/index.html && python3 manage.py runserver 0.0.0.0:8000"
volumes:
- .:/code
ports:
- "8000:8000"