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
| func main() { | |
| var wg sync.WaitGroup | |
| wg.Add(1) | |
| defer wg.Wait() | |
| flagBind := flag.String("bind", ":9010", "Bind service to address") | |
| flag.Parse() | |
| context := actor.EmptyRootContext |
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 |
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: | |
| nginx: | |
| build: | |
| context: . | |
| dockerfile: nginx.dockerfile | |
| volumes: | |
| - /var/run/docker.sock:/tmp/docker.sock:ro | |
| - /home/obraun/certs:/etc/nginx/certs:ro | |
| ports: |
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
| # ./.tmuxinator.yml | |
| name: client1 | |
| root: ./ | |
| windows: | |
| - servers: | |
| layout: main-vertical | |
| panes: | |
| - etcd |
OlderNewer