Last active
March 7, 2018 16:05
-
-
Save slowprog/6be6c06485a9f0ff3d25782f97c4636e to your computer and use it in GitHub Desktop.
Docker-compose for rancher, nginx and let's encrypt
This file contains 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: '2' | |
services: | |
nginx-proxy: | |
image: jwilder/nginx-proxy | |
container_name: nginx-proxy | |
ports: | |
- "80:80" | |
- "443:443" | |
volumes: | |
- "/etc/nginx/vhost.d" | |
- "/usr/share/nginx/html" | |
- "/var/run/docker.sock:/tmp/docker.sock:ro" | |
- "/home/docker/nginx-proxy/ssl:/etc/nginx/certs: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: | |
- "data-mysql:/var/lib/mysql" | |
volumes: | |
data-mysql: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment