-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (28 loc) · 647 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (28 loc) · 647 Bytes
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
services:
dex:
image: ghcr.io/dexidp/dex:latest
volumes:
- ./dex.yaml:/etc/dex/config.docker.yaml
- dex_data:/var/dex
env_file: dex.env
expose:
- 5556
restart: unless-stopped
proxy:
image: ghcr.io/kotx/dex-tailscale:latest
# build:
# context: .
# dockerfile: ./Dockerfile
command: [
# log level (DEBUG, INFO, WARN, ERROR)
"-logLevel", "INFO",
# "-hostname", "dex",
# "-endpoint", "http://dex:5556",
]
volumes:
- tailscale_state:/state
env_file: tailscale.env
restart: unless-stopped
volumes:
dex_data:
tailscale_state: