Created
March 18, 2018 01:02
-
-
Save thunfischbrot/c99b5aa6d33f42a62061356a5f964e34 to your computer and use it in GitHub Desktop.
plik docker-compose.yml for docker-compose-letsencrypt-nginx-proxy-companion
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: '3' | |
services: | |
plik: | |
hostname: upload.xyz.com | |
container_name: upload | |
image: rootgg/plik:latest | |
environment: | |
- VIRTUAL_HOST=upload.xyz.com | |
- VIRTUAL_PORT=8080 | |
- LETSENCRYPT_HOST=upload.xyz.com | |
- [email protected] | |
networks: | |
- webproxy | |
expose: | |
- '8080' | |
restart: always | |
volumes: | |
- ./data/files:/home/plik/server/files | |
- ./data/plikd.cfg:/home/plik/server/plikd.cfg | |
networks: | |
webproxy: | |
external: | |
name: webproxy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment