Skip to content

Commit

Permalink
dev: main docker-compose file (#137)
Browse files Browse the repository at this point in the history
What
Fix the main docker-compose file.

Why
The docker-compose file was failing to up the services because the Kafka service wasn't being referenced on the file.
  • Loading branch information
CaioTeixeira95 authored Jan 5, 2024
1 parent cc78370 commit 0d360f3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,38 @@ services:
extends:
file: docker-compose-frontend.yml
service: sdp-frontend
kafka:
extends:
file: docker-compose-sdp-anchor.yml
service: kafka
volumes:
- kafka-data:/bitnami
conduktor-platform:
extends:
file: docker-compose-sdp-anchor.yml
service: conduktor-platform
volumes:
- conduktor-platform-data:/var/conduktor
db-conduktor:
extends:
file: docker-compose-sdp-anchor.yml
service: db-conduktor
volumes:
- db-conduktor-data:/var/lib/postgresql/data
conduktor-monitoring:
extends:
file: docker-compose-sdp-anchor.yml
service: conduktor-monitoring

volumes:
postgres-db:
driver: local
postgres-ap-db:
driver: local
kafka-data:
driver: local
db-conduktor-data:
driver: local
conduktor-platform-data:
driver: local

0 comments on commit 0d360f3

Please sign in to comment.