-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (39 loc) · 794 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (39 loc) · 794 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
39
40
41
version: '3.7'
services:
app:
container_name: kepha-store
build:
context: .
dockerfile: src/main/docker/dockerfile.jvm
ports:
- "8080:8080"
depends_on:
db:
condition: service_healthy
networks:
- quarkus
db:
image: postgres:14.4
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=ads
- POSTGRES_DB=quarkus
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 6
ports:
- "5431:5432"
networks:
- quarkus
keycloak:
image: jboss/keycloak:16.1.1
environment:
- KEYCLOAK_USER=admin
- KEYCLOAK_PASSWORD=admin
ports:
- "8180:8080"
networks:
quarkus:
driver: bridge