68 lines
1.3 KiB
YAML
68 lines
1.3 KiB
YAML
version: '3.1'
|
|
|
|
services:
|
|
|
|
db:
|
|
image: postgres
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./../postgres_data:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_DB: api
|
|
POSTGRES_PASSWORD: postgres
|
|
expose:
|
|
- 5432
|
|
|
|
django:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfiles/django/Dockerfile
|
|
restart: unless-stopped
|
|
entrypoint: /django-launcher.dev.sh
|
|
volumes:
|
|
- .:/usr/src/app/
|
|
environment:
|
|
DEBUG: "True"
|
|
ALLOWED_HOSTS: ""
|
|
SECRET_KEY: ""
|
|
DB_HOST: db
|
|
DB_NAME: ""
|
|
DB_USER: "postgres"
|
|
DB_PASSWORD: "postgres"
|
|
DB_PORT: "5432"
|
|
DOMAIN: "api.localhost"
|
|
DOMAIN_URL: "http://api.localhost"
|
|
STATIC_URL: "/static/"
|
|
STATIC_ROOT: "static"
|
|
MEDIA_URL: "/media/"
|
|
EMAIL_HOST: "mailhog"
|
|
EMAIL_USE_TLS: "False"
|
|
EMAIL_PORT: "1025"
|
|
EMAIL_USER: ""
|
|
EMAIL_PASSWORD: ""
|
|
expose:
|
|
- 8000
|
|
depends_on:
|
|
- db
|
|
|
|
caddy:
|
|
image: caddy:alpine
|
|
restart: unless-stopped
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
volumes:
|
|
- ./Caddyfile.dev:/etc/caddy/Caddyfile
|
|
- ./../caddy_data:/data
|
|
- .:/usr/src/app/
|
|
depends_on:
|
|
- django
|
|
|
|
mailhog:
|
|
image: mailhog/mailhog:latest
|
|
restart: unless-stopped
|
|
expose:
|
|
- 1025:1025
|
|
ports:
|
|
- 8025:8025
|