diff --git a/templates/Gogs/0/README.md b/templates/Gogs/0/README.md index d5927ef..e3f542a 100644 --- a/templates/Gogs/0/README.md +++ b/templates/Gogs/0/README.md @@ -1 +1,9 @@ -# Gogs \ No newline at end of file +# Gogs + +### ToDo List +* Add Redis or Memcache capabilities +* Add Slack integration +* Add Discord integration + +### Known Issues +* SSH capabilities not yet functional \ No newline at end of file diff --git a/templates/Gogs/0/docker-compose.yml b/templates/Gogs/0/docker-compose.yml index 3de6c5a..7f454b1 100644 --- a/templates/Gogs/0/docker-compose.yml +++ b/templates/Gogs/0/docker-compose.yml @@ -16,13 +16,24 @@ services: {{- end}} {{- if .Values.TRAEFIK_HOST}} traefik.enable: true - traefik.frontend.rule: Host:${TRAEFIK_HOST} - traefik.frontend.entryPoints: http,https - traefik.frontend.headers.forceSTSHeader: true - traefik.frontend.headers.SSLRedirect: true - traefik.frontend.headers.STSPreload: true - traefik.frontend.headers.STSSeconds: 15552000 - traefik.port: "3000" + ### Start SSH Segment + traefik.ssh.frontend.entryPoints: ssh + traefik.ssh.frontend.headers.forceSTSHeader: true + traefik.ssh.frontend.headers.SSLRedirect: true + traefik.ssh.frontend.headers.STSPreload: true + traefik.ssh.frontend.headers.STSSeconds: 15552000 + traefik.ssh.frontend.rule: Host:${TRAEFIK_HOST} + traefik.ssh.port: "22" + ### End SSH Segment + ### Start Web Segment + traefik.web.frontend.entryPoints: http,https + traefik.web.frontend.headers.forceSTSHeader: true + traefik.web.frontend.headers.SSLRedirect: true + traefik.web.frontend.headers.STSPreload: true + traefik.web.frontend.headers.STSSeconds: 15552000 + traefik.web.frontend.rule: Host:${TRAEFIK_HOST} + traefik.web.port: "3000" + ### End Web Segment {{- else}} traefik.enable: false {{- end}} @@ -35,14 +46,16 @@ services: - "${WEB_PORT}:3000" restart: on-failure volumes: - - /RancherCattleData/${DATA_DIR}/Data:/data + - /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 mysql: image: mysql:5 dns: - 1.1.1.1 - 1.0.0.1 environment: - MYSQL_DATABASE: gogs + MYSQL_DATABASE: gogs # Will eventually rename this to "gogs_db" MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASS} MYSQL_USER: gogs_user MYSQL_PASSWORD: ${DB_USER_PASS} @@ -51,10 +64,18 @@ services: {{- if .Values.HOST_LABEL}} io.rancher.scheduler.affinity:host_label: ${HOST_LABEL} {{- end}} + networks: + db-admin: + aliases: + - gogs restart: on-failure volumes: - - /RancherCattleData/${DATA_DIR}/Database:/var/lib/mysql + - /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/mysql networks: + db-admin: + external: true public-proxy: external: true \ No newline at end of file