yig/docker-compose.yml

11 lines
215 B
YAML
Raw Normal View History

2024-06-21 03:02:03 -05:00
version: '3.8'
services:
web:
build: ./franklincce
command: gunicorn franklincce.wsgi:application --bind 0.0.0.0:8000
volumes:
- ./franklincce/:/usr/src/franklincce
ports:
- 8000:8000