-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.yaml
More file actions
71 lines (62 loc) · 2.2 KB
/
Copy pathdev.yaml
File metadata and controls
71 lines (62 loc) · 2.2 KB
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
version: "3.7"
# https://accesso.sova.dev
volumes:
tls-storage:
driver: local
driver_opts:
type: none
device: "${PWD}/data/tls"
o: bind
services:
traefik:
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./services/traefik/traefik.yml:/etc/traefik/traefik.yml:ro
- ./services/traefik/config.yml:/etc/traefik/config.yml:ro
- tls-storage:/tls
labels:
traefik.http.routers.traefik-secure.tls.certresolver: "le"
traefik.http.routers.traefik-secure.middlewares: "dashboard-auth@file"
grafana:
labels:
traefik.http.routers.grafana.tls.certresolver: "le"
api-internal:
image: ghcr.io/accesso-app/backend/api-internal:latest
environment:
ACCESSO_SENDGRID__APPLICATION_HOST: auth.sova.dev
ACCESSO_SENDGRID__SENDER_EMAIL: no-reply@auth.sova.dev
ACCESSO_SENDGRID__ENABLED: "true"
labels:
traefik.http.routers.traefik.tls.certresolver: "le"
api-admin:
image: ghcr.io/accesso-app/backend/api-admin:latest
environment:
ACCESSO_SENDGRID__APPLICATION_HOST: auth.sova.dev
ACCESSO_SENDGRID__SENDER_EMAIL: no-reply@auth.sova.dev
ACCESSO_SENDGRID__ENABLED: "true"
labels:
traefik.http.routers.api-admin.tls.certresolver: "le"
traefik.http.routers.api-admin.middlewares: "api-admin-stripprefix@file, admin-auth@file"
api-public:
image: ghcr.io/accesso-app/backend/api-public:latest
environment:
ACCESSO_SENDGRID__APPLICATION_HOST: auth.sova.dev
ACCESSO_SENDGRID__SENDER_EMAIL: no-reply@auth.sova.dev
labels:
traefik.http.routers.api-public.tls.certresolver: "le"
admin:
image: ghcr.io/accesso-app/admin/frontend:latest
environment:
PUBLIC_URL: https://admin.auth.sova.dev
labels:
traefik.http.routers.admin-secure.tls.certresolver: "le"
traefik.http.routers.admin-secure.middlewares: "admin-auth@file"
traefik.http.routers.admin.middlewares: "admin-auth@file"
frontend:
image: ghcr.io/accesso-app/frontend/main:latest
labels:
traefik.http.routers.frontend.tls.certresolver: "le"
environment:
PUBLIC_URL: https://auth.sova.dev
IMAGE_URL: https://auth.sova.dev/images
DEBUG: "true"