-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
55 lines (48 loc) · 1.27 KB
/
Copy pathdocker-compose.override.yml
File metadata and controls
55 lines (48 loc) · 1.27 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
services:
bookify.api:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://+:443;http://+:80
- ConnectionStrings__Database=Server=bookify-db;Port=5432;Database=BookifyDb;User Id=postgres;Password=postgres;Include Error Detail=true
ports:
- "80"
- "5001:443"
depends_on:
- bookify-db
bookify-db:
container_name: Bookify.Db
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=BookifyDb
restart: always
ports:
- "4001:5432"
volumes:
- postgres_bookifydb:/var/lib/postgresql/data/
bookify-idp:
image: quay.io/keycloak/keycloak:latest
container_name: Bookify.Identity
command: start-dev --import-realm
environment:
- KEYCLOAK_ADMIN=admin
- KEYCLOAK_ADMIN_PASSWORD=admin
volumes:
- ./.containers/identity:/opt/keycloak/data
- ./.files/bookify-realm-export.json:/opt/keycloak/data/import/realm.json
ports:
- 18080:8080
bookify-seq:
image: datalust/seq:latest
container_name: Bookify.Seq
environment:
- ACCEPT_EULA=Y
ports:
- 5341:5341
- 8081:80
bookify-redis:
image: redis:latest
container_name: Bookify.Redis
restart: always
ports:
- 6379:6379