Created
September 6, 2019 15:30
-
-
Save suprematis/ee425a6d067d15197fe5a2c637ba29df to your computer and use it in GitHub Desktop.
Docker Compose yaml nginx proxy
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-proxy: | |
image: jwilder/nginx-proxy | |
ports: | |
- "80:80" | |
network_mode: bridge | |
volumes: | |
- /var/run/docker.sock:/tmp/docker.sock:ro |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment