Removed networks, ports, disabling traefik
This commit is contained in:
@@ -3,19 +3,13 @@ services:
|
|||||||
|
|
||||||
snipe-it:
|
snipe-it:
|
||||||
image: snipe/snipe-it:latest
|
image: snipe/snipe-it:latest
|
||||||
depends_on:
|
|
||||||
- mysql
|
|
||||||
dns:
|
dns:
|
||||||
- 1.1.1.1
|
- 1.1.1.1
|
||||||
- 1.0.0.1
|
- 1.0.0.1
|
||||||
environment:
|
environment:
|
||||||
APP_ENV: production # "development" or "production"
|
APP_ENV: production # [ development | production ]
|
||||||
APP_DEBUG: false
|
APP_DEBUG: false
|
||||||
{{- if .Values.TRAEFIK_HOST}}
|
|
||||||
APP_URL: https://${TRAEFIK_HOST} # No port number needed
|
APP_URL: https://${TRAEFIK_HOST} # No port number needed
|
||||||
{{- else}}
|
|
||||||
APP_URL: http://localhost
|
|
||||||
{{- end}}
|
|
||||||
APP_KEY: ${APP_KEY}
|
APP_KEY: ${APP_KEY}
|
||||||
MYSQL_HOST: mysql
|
MYSQL_HOST: mysql
|
||||||
MYSQL_DATABASE: snipeit_db
|
MYSQL_DATABASE: snipeit_db
|
||||||
@@ -26,7 +20,6 @@ services:
|
|||||||
{{- if .Values.HOST_LABEL}}
|
{{- if .Values.HOST_LABEL}}
|
||||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||||
{{- end}}
|
{{- end}}
|
||||||
{{- if .Values.TRAEFIK_HOST}}
|
|
||||||
traefik.enable: true
|
traefik.enable: true
|
||||||
### Start Web Segment
|
### Start Web Segment
|
||||||
traefik.web.frontend.entryPoints: http,https
|
traefik.web.frontend.entryPoints: http,https
|
||||||
@@ -37,20 +30,8 @@ services:
|
|||||||
traefik.web.frontend.rule: Host:${TRAEFIK_HOST}
|
traefik.web.frontend.rule: Host:${TRAEFIK_HOST}
|
||||||
traefik.web.port: "80"
|
traefik.web.port: "80"
|
||||||
### End Web Segment
|
### End Web Segment
|
||||||
{{- else}}
|
|
||||||
traefik.enable: false
|
|
||||||
{{- end}}
|
|
||||||
links:
|
links:
|
||||||
- mysql
|
- mysql
|
||||||
networks:
|
|
||||||
- public-proxy
|
|
||||||
{{- if .Values.WEB_PORT}} # Allows for local access to be disabled
|
|
||||||
ports:
|
|
||||||
- "${WEB_PORT}:80"
|
|
||||||
{{- else}}
|
|
||||||
expose:
|
|
||||||
- "80"
|
|
||||||
{{- end}}
|
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||||
@@ -72,18 +53,8 @@ services:
|
|||||||
{{- if (.Values.HOST_LABEL)}}
|
{{- if (.Values.HOST_LABEL)}}
|
||||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||||
{{- end}}
|
{{- end}}
|
||||||
networks:
|
|
||||||
db-admin:
|
|
||||||
aliases:
|
|
||||||
- snipe-it # This should allow access from "mysql.snipe-it.rancher.internal"
|
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||||
- /RancherCattleData/${DATA_DIR}/Database:/var/lib/mysql
|
- /RancherCattleData/${DATA_DIR}/Database:/var/lib/mysql
|
||||||
|
|
||||||
networks:
|
|
||||||
db-admin:
|
|
||||||
external: true
|
|
||||||
public-proxy:
|
|
||||||
external: true
|
|
||||||
@@ -20,18 +20,8 @@ catalog:
|
|||||||
label: "Public Host Domain"
|
label: "Public Host Domain"
|
||||||
description: |
|
description: |
|
||||||
The host that Traefik will use to provide public access.
|
The host that Traefik will use to provide public access.
|
||||||
Leaving this empty will disable Traefik on this stack.
|
|
||||||
default: "subdomain.domain.tld"
|
default: "subdomain.domain.tld"
|
||||||
required: false
|
required: true
|
||||||
type: string
|
|
||||||
|
|
||||||
- variable: "WEB_PORT"
|
|
||||||
label: "Local Web Port"
|
|
||||||
description: |
|
|
||||||
The port to locally access the web interface on.
|
|
||||||
Leaving this empty will not expose a any port on the host system, disabling local access outside of it's Rancher network.
|
|
||||||
default: "10300"
|
|
||||||
required: false
|
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
- variable: "DATA_DIR"
|
- variable: "DATA_DIR"
|
||||||
|
|||||||
Reference in New Issue
Block a user