1
0
clubhaus-schornbach/Deployment/Live/docker-compose.yml

17 lines
411 B
YAML
Raw Normal View History

2023-07-24 20:25:48 +02:00
version: "3"
services:
backend:
container_name: clubhaus_backend
image: icaotix/clubhaus_backend
build:
context: ../../
dockerfile: Deployment/Live/Dockerfile.python
restart: "unless-stopped"
2023-07-24 20:25:48 +02:00
command: gunicorn clubhaus.wsgi:application --bind 0.0.0.0:12000
volumes:
- ../../clubhaus:/usr/src/app
2023-07-24 20:43:31 +02:00
env_file:
- .env
2023-07-24 20:25:48 +02:00
ports:
- "127.0.0.1:12000:12000"