Skip to content

Commit

Permalink
Rework docker-compose to avoid configuring with stale yaml files
Browse files Browse the repository at this point in the history
Prior to this change, the first configuration will be run with the YAML files that were written when the image was built. Instead, we want the latest YAML files to be used.
  • Loading branch information
alukach committed Oct 30, 2024
1 parent ca879cb commit 6c8dd79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
version: "3"
services:
keycloak:
build:
context: ./keycloak
dockerfile: Dockerfile
build: ./keycloak
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
Expand All @@ -19,6 +17,8 @@ services:
path: ./keycloak
keycloak-config-cli:
build: ./config
volumes:
- ./config/src:/config
depends_on:
- keycloak
environment:
Expand Down

0 comments on commit 6c8dd79

Please sign in to comment.