Skip to content

Commit

Permalink
feat: add compose config
Browse files Browse the repository at this point in the history
  • Loading branch information
leonsteinhaeuser committed Dec 5, 2024
1 parent c0d4fef commit 710333a
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
services:
number:
hostname: number
build:
context: services/number
dockerfile: Containerfile
networks:
- backend
status:
hostname: status
build:
context: services/status
dockerfile: Containerfile
networks:
- backend
view:
hostname: view
build:
context: services/view
dockerfile: Containerfile
networks:
- backend
ports:
- "8080:8080"
depends_on:
- number
- status
environment:
NUMBER_SERVICE_URL: http://number:8081
STATUS_SERVICE_URL: http://status:8082/status

networks:
backend:

0 comments on commit 710333a

Please sign in to comment.