Skip to content

Instantly share code, notes, and snippets.

@compuguy
Last active August 22, 2016 02:16
Show Gist options
  • Save compuguy/719745fcc89b20476150678174f00cd7 to your computer and use it in GitHub Desktop.
Save compuguy/719745fcc89b20476150678174f00cd7 to your computer and use it in GitHub Desktop.
Docker-compose file for favll/pogom
nginx-proxy:
image: jwilder/nginx-proxy
container_name: nginx-proxy
ports:
- "80:80"
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
pogom:
image: compuguy/pogom
container_name: pogom
environment:
- VIRTUAL_HOST=*your-domain*
volumes:
- "./pogom.db:/usr/src/app/pogom.db"
- "./config.json:/usr/src/app/config.json"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment