Skip to content

Instantly share code, notes, and snippets.

@arthurgeek
Created May 23, 2015 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arthurgeek/1ed63b95de4ac25c0d75 to your computer and use it in GitHub Desktop.
Save arthurgeek/1ed63b95de4ac25c0d75 to your computer and use it in GitHub Desktop.
docker nginx proxy
proxy:
image: jwilder/nginx-proxy
volumes:
- /var/run/docker.sock:/tmp/docker.sock
ports:
- "80:80"
app:
build: .
ports:
- "4000:4000"
environment:
VIRTUAL_HOST: meu.dominio.com.br
VIRTUAL_PORT: 4000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment