Created
November 19, 2017 13:15
-
-
Save xuyuji9000/df65bbd16d641ec03abe6e6e71aacddd to your computer and use it in GitHub Desktop.
File name should be docker-compose.yml
This file contains 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: | |
nginx-proxy: | |
image: jwilder/nginx-proxy | |
ports: | |
- "80:80" | |
volumes: | |
- /var/run/docker.sock:/tmp/docker.sock:ro | |
web: | |
image: nginx:1.13.1-alpine | |
environment: | |
- VIRTUAL_HOST=api.running-blue.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment