22 lines
372 B
YAML
22 lines
372 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
build: ./app
|
|
command: gunicorn gmba_django.wsgi:application --bind 0.0.0.0:8000
|
|
ports:
|
|
- 8000:8000
|
|
env_file:
|
|
- ./.env.prod
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: postgres:13.0-alpine
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data/
|
|
env_file:
|
|
- ./.env.prod
|
|
|
|
volumes:
|
|
postgres_data:
|
|
|