Testing a more vanilla configuration

This commit is contained in:
WilliamMiceli
2018-08-23 21:14:38 -04:00
parent ac939cde61
commit b808a4b86c
2 changed files with 10 additions and 13 deletions

View File

@@ -19,19 +19,16 @@ services:
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL} io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
{{- end}} {{- end}}
traefik.enable: true traefik.enable: true
traefik.alias: cloudtest.williammiceli.systems
traefik.frontend.rule: Host:cloudtest.williammiceli.systems traefik.frontend.rule: Host:cloudtest.williammiceli.systems
traefik.port: 9500 traefik.port: "${WEB_PORT}"
traefik.acme: true
traefik.backend: Nextcloud traefik.backend: Nextcloud
traefik.frontend.entryPoints: http,https traefik.frontend.entryPoints: http
traefik.docker.network: public
links: links:
- mysql - mysql
networks: # networks:
- public-proxy # - public-proxy
ports: ports:
- "${HOST_HTTP_PORT}:80" - "${WEB_PORT}:80"
restart: on-failure restart: on-failure
volumes: volumes:
- Application:/var/www/html - Application:/var/www/html
@@ -55,9 +52,9 @@ services:
volumes: volumes:
- Database:/var/lib/mysql - Database:/var/lib/mysql
networks: #networks:
public-proxy: # public-proxy:
external: true # external: true
volumes: volumes:
Application: Application:

View File

@@ -16,10 +16,10 @@ catalog:
required: false required: false
type: string type: string
- variable: HOST_HTTP_PORT - variable: WEB_PORT
label: Port label: Port
description: | description: |
The HTTP port to access the web interface on. The port to access the web interface on.
default: "10100" default: "10100"
required: true required: true
type: string type: string