-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose-prod-postgres.yml
108 lines (101 loc) · 3.91 KB
/
docker-compose-prod-postgres.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: "secobserve_prod"
volumes:
prod_postgres_data:
networks:
traefik:
database:
services:
traefik:
image: "traefik:v3.2.3"
container_name: "prod_traefik"
command:
- "--log.level=INFO"
- "--api.dashboard=true"
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--providers.docker.network=secobserve_prod_traefik"
- "--entrypoints.web.address=:80"
labels:
- "traefik.enable=true"
# - "traefik.http.middlewares.traefik-ipallowlist.ipallowlist.sourcerange=172.18.0.1/24"
# - "traefik.http.routers.api.middlewares=traefik-ipallowlist@docker"
- "traefik.http.routers.api.entrypoints=web"
- "traefik.http.routers.api.rule=Host(`traefik.localhost`)"
- "traefik.http.routers.api.service=api@internal"
ports:
- "80:80"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
networks:
- default
- traefik
frontend:
image: maibornwolff/secobserve-frontend:1.24.0
container_name: "prod_secobserve_frontend"
labels:
- "traefik.enable=true"
- "traefik.http.routers.frontend.rule=Host(`secobserve.localhost`)"
- "traefik.http.routers.frontend.entrypoints=web"
- "traefik.http.services.frontend.loadbalancer.server.port=3000"
environment:
API_BASE_URL: ${SO_API_BASE_URL:-http://secobserve-backend.localhost/api}
OIDC_ENABLE: ${SO_OIDC_ENABLE:-false}
OIDC_AUTHORITY: ${SO_OIDC_AUTHORITY:-dummy}
OIDC_CLIENT_ID: ${SO_OIDC_CLIENT_ID:-dummy}
OIDC_REDIRECT_URI: ${SO_OIDC_REDIRECT_URI:-http://secobserve.localhost}
OIDC_POST_LOGOUT_REDIRECT_URI: ${SO_OIDC_POST_LOGOUT_REDIRECT_URI:-http://secobserve.localhost}
OIDC_SCOPE: ${SO_OIDC_SCOPE:-openid profile email}
networks:
- traefik
backend:
image: maibornwolff/secobserve-backend:1.24.0
container_name: "prod_secobserve_backend"
labels:
- "traefik.enable=true"
- "traefik.http.routers.backend.rule=Host(`secobserve-backend.localhost`)"
- "traefik.http.routers.backend.entrypoints=web"
depends_on:
- postgres
environment:
# --- Admin user ---
ADMIN_USER: ${SO_ADMIN_USER:-admin}
ADMIN_PASSWORD: ${SO_ADMIN_PASSWORD:-admin}
ADMIN_EMAIL: ${SO_ADMIN_EMAIL:-admin@example.com}
# --- Gunicorn ---
GUNICORN_WORKERS: ${SO_GUNICORN_WORKERS:-3}
GUNICORN_THREADS: ${SO_GUNICORN_THREADS:-10}
# --- Database ---
DATABASE_ENGINE: ${SO_DATABASE_ENGINE:-django.db.backends.postgresql}
DATABASE_HOST: ${SO_DATABASE_HOST:-postgres}
DATABASE_PORT: ${SO_DATABASE_PORT:-5432}
DATABASE_DB: ${SO_DATABASE_DB:-secobserve}
DATABASE_USER: ${SO_DATABASE_USER:-secobserve}
DATABASE_PASSWORD: ${SO_DATABASE_PASSWORD:-secobserve}
# --- Security ---
ALLOWED_HOSTS: ${SO_ALLOWED_HOSTS:-secobserve-backend.localhost}
CORS_ALLOWED_ORIGINS: ${SO_CORS_ALLOWED_ORIGINS:-http://secobserve.localhost}
DJANGO_SECRET_KEY: ${SO_DJANGO_SECRET_KEY:-NxYPEF5lNGgk3yonndjSbwP77uNJxOvfKTjF5aVBqsHktNlf1wfJHHvJ8iifk32r}
FIELD_ENCRYPTION_KEY: ${SO_FIELD_ENCRYPTION_KEY:-DtlkqVb3wlaVdJK_BU-3mB4wwuuf8xx8YNInajiJ7GU=}
# --- OpenID Connect ---
OIDC_AUTHORITY: ${SO_OIDC_AUTHORITY:-}
OIDC_CLIENT_ID: ${SO_OIDC_CLIENT_ID:-}
OIDC_USERNAME: ${SO_OIDC_USERNAME:-}
OIDC_FIRST_NAME: ${SO_OIDC_FIRST_NAME:-}
OIDC_LAST_NAME: ${SO_OIDC_LAST_NAME:-}
OIDC_FULL_NAME: ${SO_OIDC_FULL_NAME:-}
OIDC_EMAIL: ${SO_OIDC_EMAIL:-}
OIDC_GROUPS: ${SO_OIDC_GROUPS:-}
networks:
- traefik
- database
postgres:
image: postgres:15.10-alpine
container_name: "prod_postgres"
environment:
POSTGRES_DB: ${SO_POSTGRES_DB:-secobserve}
POSTGRES_USER: ${SO_POSTGRES_USER:-secobserve}
POSTGRES_PASSWORD: ${SO_POSTGRES_PASSWORD:-secobserve}
volumes:
- prod_postgres_data:/var/lib/postgresql/data
networks:
- database