Created
February 10, 2019 16:59
-
-
Save condef5/833674bf1d952fbfe015cd8f8411c7df to your computer and use it in GitHub Desktop.
Docker dotfiles
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: | |
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