-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
54 lines (50 loc) · 1.17 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
name: arsa
services:
arsa-proxy:
container_name: 'auth-proxy-arsa'
hostname: 'auth-proxy-arsa'
image: ghcr.io/gruppe-adler/auth-proxy:master
restart: unless-stopped
networks:
- nginx
- arsa
environment:
- VIRTUAL_HOST=arsa.gruppe-adler.de
- LETSENCRYPT_HOST=arsa.gruppe-adler.de
labels:
com.centurylinklabs.watchtower.enable: "false"
volumes:
- type: bind
source: ./auth-proxy-config-arsa/config.js
target: /app/config.js
arsa:
container_name: 'arsa'
hostname: 'arsa'
image: ghcr.io/gruppe-adler/arsa:main
restart: unless-stopped
depends_on:
arsa-proxy:
condition: service_started
networks:
- arsa
labels:
com.centurylinklabs.watchtower.enable: "false"
volumes:
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
- type: volume
source: arsa-servers
target: /app/servers
- type: bind
source: /etc/arsa/arsa-profiles
target: /app/profiles
volumes:
arsa-servers:
name: "arsa-servers"
networks:
arsa:
name: arsa
nginx:
external:
name: nginx-proxy