2023-08-13 10:58:52 +00:00
|
|
|
version: "3.7"
|
|
|
|
services:
|
2023-08-13 10:59:37 +00:00
|
|
|
tandoor:
|
2023-08-13 10:58:52 +00:00
|
|
|
container_name: tandoor
|
2024-04-08 08:20:44 +00:00
|
|
|
image: ghcr.io/tandoorrecipes/recipes:1.5.17
|
2023-08-13 10:58:52 +00:00
|
|
|
volumes:
|
2023-08-13 12:39:48 +00:00
|
|
|
- ${APP_DATA_DIR}/data/staticfiles:/opt/recipes/staticfiles
|
|
|
|
- ${APP_DATA_DIR}/data/mediafiles:/opt/recipes/mediafiles
|
2023-08-13 10:58:52 +00:00
|
|
|
ports:
|
|
|
|
- ${APP_PORT}:8080
|
|
|
|
environment:
|
|
|
|
- SECRET_KEY=${TANDOOR_SECRET_KEY}
|
|
|
|
- DB_ENGINE=django.db.backends.postgresql
|
2023-08-13 17:31:35 +00:00
|
|
|
- POSTGRES_HOST=tandoor-db
|
2023-08-13 10:58:52 +00:00
|
|
|
- POSTGRES_PORT=5432
|
2023-08-13 17:31:35 +00:00
|
|
|
- POSTGRES_USER=tandoor
|
2023-08-13 10:58:52 +00:00
|
|
|
- POSTGRES_PASSWORD=${TANDOOR_POSTGRESS_PASSWORD}
|
2023-08-13 17:31:35 +00:00
|
|
|
- POSTGRES_DB=tandoordb
|
2023-08-13 10:58:52 +00:00
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
2023-08-13 17:31:35 +00:00
|
|
|
restart: unless-stopped
|
2023-08-13 19:31:05 +00:00
|
|
|
healthcheck:
|
|
|
|
test: wget --no-verbose --tries=1 --spider http://localhost:8080
|
|
|
|
interval: 10s
|
|
|
|
timeout: 5s
|
|
|
|
retries: 5
|
|
|
|
start_period: 30s
|
2023-08-13 10:58:52 +00:00
|
|
|
labels:
|
|
|
|
# Main
|
|
|
|
traefik.enable: true
|
|
|
|
traefik.http.middlewares.tandoor-web-redirect.redirectscheme.scheme: https
|
2023-08-13 21:24:43 +00:00
|
|
|
traefik.http.services.tandoor.loadbalancer.server.port: 8080
|
2023-08-13 10:58:52 +00:00
|
|
|
# Web
|
|
|
|
traefik.http.routers.tandoor-insecure.rule: Host(`${APP_DOMAIN}`)
|
|
|
|
traefik.http.routers.tandoor-insecure.entrypoints: web
|
|
|
|
traefik.http.routers.tandoor-insecure.service: tandoor
|
|
|
|
traefik.http.routers.tandoor-insecure.middlewares: tandoor-web-redirect
|
|
|
|
# Websecure
|
|
|
|
traefik.http.routers.tandoor.rule: Host(`${APP_DOMAIN}`)
|
|
|
|
traefik.http.routers.tandoor.entrypoints: websecure
|
|
|
|
traefik.http.routers.tandoor.service: tandoor
|
|
|
|
traefik.http.routers.tandoor.tls.certresolver: myresolver
|
|
|
|
# Local domain
|
|
|
|
traefik.http.routers.tandoor-local-insecure.rule: Host(`tandoor.${LOCAL_DOMAIN}`)
|
|
|
|
traefik.http.routers.tandoor-local-insecure.entrypoints: web
|
|
|
|
traefik.http.routers.tandoor-local-insecure.service: tandoor
|
|
|
|
traefik.http.routers.tandoor-local-insecure.middlewares: tandoor-web-redirect
|
|
|
|
# Local domain secure
|
|
|
|
traefik.http.routers.tandoor-local.rule: Host(`tandoor.${LOCAL_DOMAIN}`)
|
|
|
|
traefik.http.routers.tandoor-local.entrypoints: websecure
|
|
|
|
traefik.http.routers.tandoor-local.service: tandoor
|
|
|
|
traefik.http.routers.tandoor-local.tls: true
|
2023-08-13 11:19:36 +00:00
|
|
|
depends_on:
|
2023-08-13 19:31:05 +00:00
|
|
|
tandoor-db:
|
|
|
|
condition: service_healthy
|
2023-08-13 11:13:51 +00:00
|
|
|
|
2023-08-13 17:31:35 +00:00
|
|
|
tandoor-db:
|
2023-08-13 11:19:36 +00:00
|
|
|
image: postgres:15-alpine
|
2023-08-13 17:31:35 +00:00
|
|
|
container_name: tandoor-db
|
2023-08-13 11:19:36 +00:00
|
|
|
volumes:
|
2023-08-13 12:39:48 +00:00
|
|
|
- ${APP_DATA_DIR}/data/postgresql:/var/lib/postgresql/data
|
2023-08-13 11:21:40 +00:00
|
|
|
environment:
|
2023-08-13 11:19:36 +00:00
|
|
|
- POSTGRES_PORT=5432
|
2023-08-13 17:31:35 +00:00
|
|
|
- POSTGRES_USER=tandoor
|
2023-08-13 11:19:36 +00:00
|
|
|
- POSTGRES_PASSWORD=${TANDOOR_POSTGRESS_PASSWORD}
|
2023-08-13 17:31:35 +00:00
|
|
|
- POSTGRES_DB=tandoordb
|
|
|
|
restart: unless-stopped
|
2023-08-13 11:19:36 +00:00
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
2023-08-13 17:55:59 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD-SHELL", "pg_isready", "-d", "tandoor"]
|
|
|
|
interval: 10s
|
|
|
|
timeout: 5s
|
|
|
|
retries: 5
|
|
|
|
start_period: 30s
|