Skip to content

Instantly share code, notes, and snippets.

@condef5
Created February 10, 2019 16:59
Show Gist options
  • Save condef5/833674bf1d952fbfe015cd8f8411c7df to your computer and use it in GitHub Desktop.
Save condef5/833674bf1d952fbfe015cd8f8411c7df to your computer and use it in GitHub Desktop.
Docker dotfiles
version: "3"
services:
admin:
image: condef5/admin-touch
container_name: admin
environment:
VIRTUAL_HOST: admin.touch-sound.net
restart: always
app:
image: condef5/jukebox
container_name: app
environment:
VIRTUAL_HOST: app.touch-sound.net
restart: always
nginx-proxy:
image: jwilder/nginx-proxy
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
restart: always
privileged: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment