forked from ga4gh/ga4gh-starter-kit-drs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
76 lines (70 loc) · 1.86 KB
/
Copy pathdocker-compose.yml
File metadata and controls
76 lines (70 loc) · 1.86 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
72
73
74
75
76
version: "3.7"
networks:
intranet:
services:
kratos-migrate:
image: oryd/kratos:v0.9.0-alpha.2
environment:
DSN: postgres://kratos:secret@host.docker.internal:5432/kratos?sslmode=disable
command: -c /etc/config/kratos/kratos.yml migrate sql -e --yes
volumes:
- type: bind
source: ./contrib/kratos
target: /etc/config/kratos
restart: on-failure
networks:
- intranet
kratos:
image: oryd/kratos:v0.9.0-alpha.2
depends_on:
- kratos-migrate
ports:
- "4433:4433" # public
- "4434:4434" # admin
environment:
DSN: postgres://kratos:secret@host.docker.internal:5432/kratos?sslmode=disable
LOG_LEVEL: trace
command: serve -c /etc/config/kratos/kratos.yml --dev --watch-courier
volumes:
- type: bind
source: ./contrib/kratos
target: /etc/config/kratos
restart: unless-stopped
networks:
- intranet
hydra-migrate:
image: oryd/hydra:v26.2.0
environment:
DSN: postgres://hydra:secret@host.docker.internal:5432/hydra?sslmode=disable
command: -c /etc/config/hydra/hydra.yml migrate sql -e --yes
volumes:
- type: bind
source: ./contrib/hydra
target: /etc/config/hydra
restart: on-failure
networks:
- intranet
hydra:
image: oryd/hydra:v26.2.0
depends_on:
- hydra-migrate
ports:
- "4444:4444"
- "4445:4445"
- "5555:5555"
environment:
DSN: postgres://hydra:secret@host.docker.internal:5432/hydra?sslmode=disable
LOG_LEVEL: trace
command: -c /etc/config/hydra/hydra.yml serve all --dev
volumes:
- type: bind
source: ./contrib/hydra
target: /etc/config/hydra
restart: unless-stopped
networks:
- intranet
mailslurper:
image: oryd/mailslurper:latest-smtps
ports:
- "4436:4436"
- "4437:4437"