-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (45 loc) · 1.3 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
version: '3'
services:
oauth:
image: quay.io/keycloak/keycloak:21.0.1
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
volumes:
- .config:/tmp/.config
- .config/realm.json:/opt/keycloak/data/import/realm.json
command:
- start-dev
- --import-realm
labels:
- "traefik.http.routers.oauth.rule=Host(`oauth.docker.localhost`)"
db:
image: mariadb
restart: always
ports:
- 3336:3306
environment:
MARIADB_ROOT_PASSWORD: root
volumes:
- .config/db/0.schema.sql:/docker-entrypoint-initdb.d/0.schema.sql
- .config/db/1.data.sql:/docker-entrypoint-initdb.d/1.data.sql
app:
image: nginx
volumes:
- ./web/dist:/usr/share/nginx/html
labels:
- "traefik.http.routers.app.rule=Host(`app.docker.localhost`)"
reverse-proxy:
# The official v2 Traefik docker image
image: traefik:v2.9
# Enables the web UI and tells Traefik to listen to docker
command: --api.insecure=true --providers.docker
ports:
# The HTTP port
- "80:80"
# The Web UI (enabled by --api.insecure=true)
- "8081:8080"
volumes:
#- $PWD/traefik.yml:/etc/traefik/traefik.yml
# So that Traefik can listen to the Docker events
- /var/run/docker.sock:/var/run/docker.sock