First trial of Gitea!

This commit is contained in:
WilliamMiceli
2019-02-06 21:04:32 -05:00
parent ff436d5908
commit 796de41932
4 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
# Gitea
## Known Issues
* SSH capabilities not yet functional

View File

@@ -0,0 +1,62 @@
version: '2'
services:
gogs:
image: gitea/gitea:latest
dns:
- 1.1.1.1
- 1.0.0.1
environment:
USER_UID: '1000'
USER_GID: '1000'
APP_NAME: 'Gitea: Git with a cup of tea' # Application name, used in the page title.
RUN_MODE: prod # ['dev' | 'prod']
DISABLE_SSH: true # SSH not yet possible with Traefik
DB_TYPE: postgres
DB_HOST: postgres:5432
DB_NAME: gitea_db
DB_USER: gitea_user
DB_PASSWD: ${DB_USER_PASS}
labels:
io.rancher.container.pull_image: always
{{- if .Values.HOST_LABEL}}
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
{{- end}}
traefik.enable: true
### Start Web Segment
traefik.web.frontend.entryPoints: http,https
traefik.web.frontend.headers.forceSTSHeader: true
traefik.web.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information)
traefik.web.frontend.headers.SSLRedirect: true
traefik.web.frontend.headers.STSPreload: true
traefik.web.frontend.headers.STSSeconds: 15552000
traefik.web.frontend.passHostHeader: true
traefik.web.frontend.rule: Host:${TRAEFIK_HOST}
traefik.web.port: '3000'
### End Web Segment
links:
- postgres
restart: on-failure
volumes:
- /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
- /RancherCattle/${DATA_DIR}/Data:/data
postgres:
image: postgres:9.6
dns:
- 1.1.1.1
- 1.0.0.1
environment:
POSTGRES_DB: gitea_db
POSTGRES_USER: gitea_user
POSTGRES_PASSWORD: ${DB_USER_PASS}
labels:
io.rancher.container.pull_image: always
{{- if .Values.HOST_LABEL}}
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
{{- end}}
restart: on-failure
volumes:
- /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
- /RancherCattle/${DATA_DIR}/Database:/var/lib/postgresql/data

View File

@@ -0,0 +1,41 @@
version: '2'
catalog:
name: Gitea
version: latest
# description:
# minimum_rancher_version:
# maximum_rancher_version:
# upgrade_from:
questions:
- variable: "HOST_LABEL"
label: "Host Label Key/Value Pair"
description: |
The Label Key/Value pair of the host which containers should be deployed.
default: "host.id=Host1"
required: false
type: string
- variable: "TRAEFIK_HOST"
label: "Public Host Domain"
description: |
The host that Traefik will use to provide public access.
default: "subdomain.domain.tld"
required: true
type: string
- variable: "DB_USER_PASS"
label: "Database User Password"
description: |
A secure password to be used by the "gitea_user" database user.
# default:
required: true
type: password
- variable: "DATA_DIR"
label: "Data Directory"
description: |
The directory to store persistent data for the stack.
default: "Personal/Gitea"
required: true
type: string