Created
June 5, 2016 15:41
-
-
Save th3architect/57c1050b184bfb908903adfc8c3e42c4 to your computer and use it in GitHub Desktop.
Docker-compose for rancher, nginx and let's encrypt
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
nginx-proxy: | |
image: jwilder/nginx-proxy:latest | |
ports: | |
- "80:80" | |
- "443:443" | |
volumes: | |
- '/home/docker/nginx-proxy/ssl:/etc/nginx/certs:ro' | |
- '/etc/nginx/vhost.d' | |
- '/usr/share/nginx/html' | |
- '/var/run/docker.sock:/tmp/docker.sock:ro' | |
letsencrypt-nginx-proxy-companion: | |
image: jrcs/letsencrypt-nginx-proxy-companion:latest | |
volumes_from: | |
- nginx-proxy | |
volumes: | |
- '/home/docker/nginx-proxy/ssl:/etc/nginx/certs:rw' | |
- '/var/run/docker.sock:/var/run/docker.sock:ro' | |
rancher-server: | |
image: rancher/server:latest | |
environment: | |
VIRTUAL_PORT: 8080 | |
VIRTUAL_HOST: www.domain.com | |
LETSENCRYPT_HOST: www.domain.com | |
LETSENCRYPT_EMAIL: [email protected] | |
volumes: | |
- '/home/docker/rancher-server/mysql:/var/lib/mysql:rw' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment