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}
{{- end}}
traefik.enable: true
traefik.alias: cloudtest.williammiceli.systems
traefik.frontend.rule: Host:cloudtest.williammiceli.systems
traefik.port: 9500
traefik.acme: true
traefik.port: "${WEB_PORT}"
traefik.backend: Nextcloud
traefik.frontend.entryPoints: http,https
traefik.docker.network: public
traefik.frontend.entryPoints: http
links:
- mysql
networks:
- public-proxy
# networks:
# - public-proxy
ports:
- "${HOST_HTTP_PORT}:80"
- "${WEB_PORT}:80"
restart: on-failure
volumes:
- Application:/var/www/html
@@ -55,9 +52,9 @@ services:
volumes:
- Database:/var/lib/mysql
networks:
public-proxy:
external: true
#networks:
# public-proxy:
# external: true
volumes:
Application:

View File

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