Skip to content

Commit 9dfbc98

Browse files
committed
✨ [#50] added keycloak docker env for vcr
1 parent a9dff03 commit 9dfbc98

File tree

5 files changed

+2471
-111
lines changed

5 files changed

+2471
-111
lines changed

docker/docker-compose.keycloak.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Config taken from https://stackoverflow.com/a/77257732
2+
#
3+
# This docker-compose is for development and test purposes. Tests are recorded with
4+
# VCR against this instance.
5+
#
6+
# Log in to http://localhost:8080/admin/master/console/ with `admin`/`admin`
7+
# credentials.
8+
#
9+
# DO NOT USE THIS IN PRODUCTION.
10+
#
11+
12+
version: '3'
13+
14+
services:
15+
keycloak:
16+
image: quay.io/keycloak/keycloak:23.0
17+
command: start-dev --import-realm
18+
environment:
19+
- KEYCLOAK_ADMIN=admin
20+
- KEYCLOAK_ADMIN_PASSWORD=admin
21+
volumes:
22+
- ./keycloak/import:/opt/keycloak/data/import
23+
ports:
24+
- 8080:8080
25+
networks:
26+
referentielijsten-dev:
27+
aliases:
28+
- keycloak.referentielijsten.local
29+
30+
networks:
31+
referentielijsten-dev:
32+
name: referentielijsten-dev

0 commit comments

Comments
 (0)