-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
138 lines (124 loc) · 5.28 KB
/
docker-compose.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
---
name: ploneconf2024
services:
traefik:
image: traefik:v2.11
ports:
- 80:80
labels:
- traefik.enable=true
- traefik.constraint-label=public
- traefik.http.routers.traefik-public-http.rule=Host(`traefik.ploneconf2024.localhost`)
- traefik.http.routers.traefik-public-http.entrypoints=http
- traefik.http.routers.traefik-public-http.service=api@internal
- traefik.http.services.traefik-public.loadbalancer.server.port=8000
# GENERIC MIDDLEWARES
- traefik.http.middlewares.gzip.compress=true
- traefik.http.middlewares.gzip.compress.excludedcontenttypes=image/png, image/jpeg, font/woff2
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
command:
- --providers.docker
- --providers.docker.constraints=Label(`traefik.constraint-label`, `public`)
- --providers.docker.exposedbydefault=false
- --entrypoints.http.address=:80
- --accesslog
- --log
- --api
purger:
image: ghcr.io/kitconcept/cluster-purger:latest
platform: linux/amd64
environment:
PURGER_SERVICE_NAME: varnish
PURGER_SERVICE_PORT: 80
PURGER_MODE: "compose"
PURGER_PUBLIC_SITES: "['ploneconf2024.localhost']"
varnish:
build:
context: devops/varnish
labels:
- traefik.enable=true
- traefik.constraint-label=public
# SERVICE
- traefik.http.services.svc-varnish.loadbalancer.server.port=80
depends_on:
- backend
frontend:
build:
context: ./frontend
args:
- VOLTO_VERSION=${VOLTO_VERSION}
environment:
RAZZLE_INTERNAL_API_PATH: http://backend:8080/Plone
depends_on:
- backend
labels:
- traefik.enable=true
- traefik.constraint-label=public
# Service
- traefik.http.services.svc-frontend.loadbalancer.server.port=3000
# Routers
## /
### Router: Varnish Public
- traefik.http.routers.rt-frontend-public.rule=Host(`ploneconf2024.localhost`)
- traefik.http.routers.rt-frontend-public.entrypoints=http
- traefik.http.routers.rt-frontend-public.service=svc-varnish
- traefik.http.routers.rt-frontend-public.middlewares=gzip
### Router: Internal
- traefik.http.routers.rt-frontend-internal.rule=Host(`ploneconf2024.localhost`) && Headers(`X-Varnish-Routed`, `1`)
- traefik.http.routers.rt-frontend-internal.entrypoints=http
- traefik.http.routers.rt-frontend-internal.service=svc-frontend
backend:
build:
context: ./backend
args:
- PLONE_VERSION=${PLONE_VERSION}
environment:
RELSTORAGE_DSN: "dbname='${DB_NAME:-plone}' user='${DB_NAME:-plone}' host='${DB_HOST:-db}' password='${DB_PASSWORD:-DbGdwJXQrmnT}' port='${DB_PORT:-5432}'"
depends_on:
- db
labels:
- traefik.enable=true
- traefik.constraint-label=public
# Services
- traefik.http.services.svc-backend.loadbalancer.server.port=8080
# Middlewares
## VHM rewrite /++api++/
- "traefik.http.middlewares.mw-backend-vhm-api.replacepathregex.regex=^/\\+\\+api\\+\\+($$|/.*)"
- "traefik.http.middlewares.mw-backend-vhm-api.replacepathregex.replacement=/VirtualHostBase/http/ploneconf2024.localhost/Plone/++api++/VirtualHostRoot$$1"
## VHM rewrite /ClassicUI/
- "traefik.http.middlewares.mw-backend-vhm-classic.replacepathregex.regex=^/ClassicUI($$|/.*)"
- "traefik.http.middlewares.mw-backend-vhm-classic.replacepathregex.replacement=/VirtualHostBase/http/ploneconf2024.localhost/Plone/VirtualHostRoot/_vh_ClassicUI$$1"
## Basic Authentication
### Note: all dollar signs in the hash need to be doubled for escaping.
### To create user:password pair, it's possible to use this command:
### echo $(htpasswd -nb user password) | sed -e s/\\$/\\$\\$/g
### Defaults to admin:admin
- traefik.http.middlewares.mw-backend-auth.basicauth.users=admin:$$apr1$$uZPT5Fgu$$AmlIdamxT5ipBvPlsdfD70
# Routers
## /++api++/
### Router: Varnish Public
- traefik.http.routers.rt-backend-api-public.rule=Host(`ploneconf2024.localhost`) && PathPrefix(`/++api++`)
- traefik.http.routers.rt-backend-api-public.entrypoints=http
- traefik.http.routers.rt-backend-api-public.service=svc-varnish
- traefik.http.routers.rt-backend-api-public.middlewares=gzip
### Router: Internal
- traefik.http.routers.rt-backend-api-internal.rule=Host(`ploneconf2024.localhost`) && PathPrefix(`/++api++`) && Headers(`X-Varnish-Routed`, `1`)
- traefik.http.routers.rt-backend-api-internal.entrypoints=http
- traefik.http.routers.rt-backend-api-internal.service=svc-backend
- traefik.http.routers.rt-backend-api-internal.middlewares=gzip,mw-backend-vhm-api
## /ClassicUI
- traefik.http.routers.rt-backend-classic.rule=Host(`ploneconf2024.localhost`) && PathPrefix(`/ClassicUI`)
- traefik.http.routers.rt-backend-classic.entrypoints=http
- traefik.http.routers.rt-backend-classic.service=svc-backend
- traefik.http.routers.rt-backend-classic.middlewares=gzip,mw-backend-auth,mw-backend-vhm-classic
db:
image: postgres:14.15
environment:
POSTGRES_USER: plone
POSTGRES_PASSWORD: DbGdwJXQrmnT
POSTGRES_DB: plone
volumes:
- vol-site-data:/var/lib/postgresql/data
volumes:
vol-site-data: {}