django-template/docker-compose.pro.yaml

77 lines
1.5 KiB
YAML
Raw Normal View History

2021-04-01 09:48:35 +02:00
version: '3.1'
services:
2021-10-21 14:56:37 +02:00
postgresql:
image: postgres
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: sapps
expose:
- 5432
2021-04-01 09:48:35 +02:00
django:
2021-07-05 11:42:54 +02:00
build:
context: ./
2021-07-05 11:45:39 +02:00
dockerfile: ./Dockerfiles/django/Dockerfile
2021-04-01 09:48:35 +02:00
restart: always
entrypoint: /django-launcher.pro.sh
volumes:
- .:/usr/src/app/
environment:
DEBUG: "False"
ALLOWED_HOSTS: ""
SECRET_KEY: "secret"
2021-10-21 14:54:28 +02:00
DB_ENGINE: "django.db.backends.postgresql"
DB_NAME: "sapps"
DB_USER: "postgres"
DB_PASSWORD: "postgres"
DB_HOST: "postgresql"
DB_PORT: "5432"
DOMAIN: "ejemplo.com"
DOMAIN_URL: "https://ejemplo.com"
2021-04-01 09:48:35 +02:00
STATIC_URL: "/static/"
2021-04-21 16:56:46 +02:00
STATIC_ROOT: "static"
2021-04-01 09:48:35 +02:00
MEDIA_URL: "/media/"
2021-08-26 18:18:06 +02:00
REDIS_HOST: "redis"
REDIS_PORT: "6379"
2021-04-01 09:48:35 +02:00
EMAIL_HOST: ""
EMAIL_USE_TLS: "True"
EMAIL_PORT: "2525"
EMAIL_USER: ""
EMAIL_PASSWORD: ""
expose:
- 8000
2021-10-21 14:56:37 +02:00
depends_on:
- postgresql
2021-04-01 09:48:35 +02:00
caddy:
image: caddy:alpine
restart: always
ports:
- 80:80
- 443:443
volumes:
- .:/usr/src/app/
2021-04-16 18:35:06 +02:00
- ./Caddyfile.pro:/etc/caddy/Caddyfile
2021-04-01 09:48:35 +02:00
- ./../caddy_data:/data
depends_on:
- django
2021-06-14 09:20:56 +02:00
redis:
image: redis:alpine
2021-09-03 17:57:16 +02:00
restart: unless-stopped
2021-06-14 09:20:56 +02:00
expose:
- 6379
2021-04-01 09:48:35 +02:00
gulp:
build: Dockerfiles/gulp
restart: always
command: gulp
volumes:
- .:/app/
depends_on:
- caddy