Skip to content

Commit

Permalink
adds basic Keycloak Docker integration
Browse files Browse the repository at this point in the history
Ref: #71
  • Loading branch information
oliveratfoodcoopx committed Nov 9, 2022
1 parent 8e292d6 commit 7780000
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
version: "3.9"
services:
keycloak_server:
build:
context: ./docker/keycloak
dockerfile: Dockerfile

ports:
- "8080:8080"
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin

openldap:
image: "osixia/openldap"
environment:
Expand Down Expand Up @@ -28,6 +39,7 @@ services:
- openldap
- db
- selenium
- keycloak_server

nginx-proxy:
image: jwilder/nginx-proxy
Expand Down
1 change: 1 addition & 0 deletions docker/keycloak/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dockerfile
4 changes: 4 additions & 0 deletions docker/keycloak/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM quay.io/keycloak/keycloak:20.0.1


CMD ["start-dev"]

0 comments on commit 7780000

Please sign in to comment.