-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
37 lines (37 loc) · 1.13 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
version: '3.8'
services:
database:
image: postgres:15.3
environment:
- POSTGRES_USER=test
- POSTGRES_PASSWORD=test
ports:
- "5432:5432"
keycloak:
# Starting with Keycloak 17, Keycloak is now powered by Quarkus and no longer WildFly
# This requires slight changes to the configuration, see https://www.keycloak.org/migration/migrating-to-quarkus
image: quay.io/keycloak/keycloak:18.0.2
command: [ 'start-dev --http-relative-path /auth --import-realm --auto-build' ]
environment:
- KEYCLOAK_DB=dev-file
- KEYCLOAK_ADMIN=keycloak
- KEYCLOAK_ADMIN_PASSWORD=keycloak
- KEYCLOAK_FEATURES=scripts
volumes:
- type: bind
source: ./tmp
target: /opt/keycloak/data/import
read_only: true
ports:
- "8888:8080"
# Drop-in replacement for the previous roribio16/alpine-sqs:latest (which had 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"