Last active
May 14, 2020 09:41
-
-
Save obcode/c40ea5e86aef416369b91db8bd7863ba to your computer and use it in GitHub Desktop.
Beispiel Docker-Compose für VSS Blatt 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
customerservice: | |
image: docker.pkg.github.com/vesose/solutionb1/customerservice:latest | |
command: --bind=customerservice:9010 | |
bookservice: | |
image: docker.pkg.github.com/vesose/solutionb1/bookservice:latest | |
command: --bind=bookservice:9020 | |
libraryservice: | |
image: docker.pkg.github.com/vesose/solutionb1/libraryservice:latest | |
command: --bind=libraryservice:9000 --customerservice=customerservice:9010 --bookservice=bookservice:9020 | |
links: | |
- customerservice | |
- bookservice | |
client: | |
image: docker.pkg.github.com/vesose/solutionb1/client:latest | |
command: --bind=client:9030 --libraryservice=libraryservice:9000 | |
links: | |
- libraryservice |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment