-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
38 lines (34 loc) · 869 Bytes
/
docker-compose.yaml
File metadata and controls
38 lines (34 loc) · 869 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
31
32
33
34
35
36
37
38
version: '3'
services:
beyondauth:
build:
context: .
ports:
- 8084:8080
volumes:
- ./example.toml:/etc/beyondauthconfig.toml
labels:
- "traefik.frontend.rule=Host:auth.docker.localhost"
restart: on-failure
keycloak:
image: gnur/keycloak:testing
ports:
- 8080:8080
labels:
- "traefik.frontend.rule=Host:keycloak"
public:
image: gnur/snost
labels:
- "traefik.frontend.rule=Host:public.docker.localhost"
private:
image: gnur/snost
labels:
- "traefik.frontend.rule=Host:private.docker.localhost"
traefik:
image: traefik # The official Traefik docker image
ports:
- "80:80" # The HTTP port
- "8083:8080" # The Web UI (enabled by --api)
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./traefik.toml:/etc/traefik/traefik.toml