-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
34 lines (34 loc) · 972 Bytes
/
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
version: '3.8'
services:
database:
image: postgres:12.3
environment:
- POSTGRES_USER=test
- POSTGRES_PASSWORD=test
ports:
- "5432:5432"
keycloak:
image: quay.io/keycloak/keycloak:18.0.0-legacy
environment:
- KEYCLOAK_USER=keycloak
- KEYCLOAK_PASSWORD=keycloak
- DB_VENDOR=h2
- JAVA_OPTS=-Dkeycloak.migration.action=import -Dkeycloak.migration.provider=singleFile -Dkeycloak.migration.file=/tmp/keycloak-dump.json
volumes:
- type: bind
source: ./tmp/keycloak-dump.json
target: /tmp/keycloak-dump.json
read_only: true
ports:
- "8888:8080"
# Drop-in replacement for the previous roribio16/alpine-sqs:latest (no arm64 support)
sqs:
image: softwaremill/elasticmq-native
volumes:
- type: bind
source: ./tmp/sqs-queue-definition.conf
target: /opt/elasticmq.conf
read_only: true
ports:
- "9324:9324"
- "9325:9325"