17 lines
411 B
YAML
17 lines
411 B
YAML
version: "3"
|
|
services:
|
|
backend:
|
|
container_name: clubhaus_backend
|
|
image: icaotix/clubhaus_backend
|
|
build:
|
|
context: ../../
|
|
dockerfile: Deployment/Live/Dockerfile.python
|
|
restart: "unless-stopped"
|
|
command: gunicorn clubhaus.wsgi:application --bind 0.0.0.0:12000
|
|
volumes:
|
|
- ../../clubhaus:/usr/src/app
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "127.0.0.1:12000:12000"
|