Skip to content

Commit

Permalink
feat: docker-compose.dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphclue committed Nov 1, 2024
1 parent aea50e2 commit a0fa95d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: '3'
services:
database:
image: mongo
ports:
- "27017:27017"
volumes:
- database:/data/db

keycloak:
image: quay.io/keycloak/keycloak:24.0.3
command: [ 'start-dev' ]
environment:
KC_HOSTNAME: localhost
KC_HTTP_RELATIVE_PATH: /auth
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: root
ports:
- "8080:8080"
volumes:
- ./libs/keycloak:/opt/keycloak/themes/apollusia

volumes:
database:

0 comments on commit a0fa95d

Please sign in to comment.