Created
January 8, 2019 11:11
-
-
Save shudarshon/54cd7655be8d4fdedce184e8e3f95e45 to your computer and use it in GitHub Desktop.
Revisions
-
shudarshon created this gist
Jan 8, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ version: '2' services: proxy: image: jwilder/nginx-proxy ports: - "80:80" volumes: - /var/run/docker.sock:/tmp/docker.sock:ro environment: - DEFAULT_HOST=proxy.example webapp: image: katacoda/docker-http-server ports: - "80" environment: - VIRTUAL_HOST=proxy.example