Last active
April 9, 2018 22:30
-
-
Save joatmon08/932bc9df0a2a210b562dbed9a688f5c1 to your computer and use it in GitHub Desktop.
Reverse Proxy Docker Compose
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: '2' | |
| services: | |
| reverseproxy: | |
| image: reverseproxy:latest | |
| ports: | |
| - 8080:8080 | |
| restart: always | |
| test: | |
| image: joatmon08/testapp:latest | |
| restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey Rosemary, do you have the Dockerfile for testapp somewhere? Because I wasn't able to get this docker-compose.yml to run without it.