Skip to content

Commit

Permalink
feat(devel): add local miw-app image to docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoscode committed Jun 1, 2023
1 parent 8646713 commit eae7242
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions dev-assets/dev-containers/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
version: '3'

services:
local_miw_app:
image: local-miw:latest
container_name: local_miw_app
env_file:
- ../../dev.env
ports:
- "8087:8087"
environment:
DB_HOST: local_postgres
networks:
- miw-net

local_postgres:
image: postgres:14.2-alpine
container_name: local_postgres
Expand All @@ -10,6 +22,8 @@ services:
- postgres-data:/data/postgres-data
ports:
- "5432:5432"
networks:
- miw-net

local_keycloak:
image: quay.io/keycloak/keycloak:21.1
Expand All @@ -23,6 +37,12 @@ services:
- ./keycloak/local-realm.json:/opt/keycloak/data/import/local-realm.json
ports:
- "8081:8080"
networks:
- miw-net

volumes:
postgres-data:

networks:
miw-net:
name: miw-net

0 comments on commit eae7242

Please sign in to comment.