37 lines
720 B
YAML
37 lines
720 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile.prod
|
|
command: gunicorn gmba_django.wsgi:application --bind [::]:8000
|
|
volumes:
|
|
- static_volume:/home/app/app/static
|
|
- media_volume:/home/app/app/media
|
|
expose:
|
|
- 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
|
|
nginx:
|
|
build: ./nginx
|
|
volumes:
|
|
- static_volume:/home/app/app/static
|
|
- media_volume:/home/app/app/media
|
|
ports:
|
|
- 1337:80
|
|
depends_on:
|
|
- web
|
|
|
|
volumes:
|
|
postgres_data:
|
|
static_volume:
|
|
media_volume:
|