modified server
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,5 +1,5 @@
|
|||||||
# Ignore everything in the volume folder
|
# Ignore everything in the volume folder
|
||||||
volume/*
|
volumes/*
|
||||||
|
|
||||||
# But not the .gitkeep file
|
# But not the .gitkeep file
|
||||||
!volume/.gitkeep
|
!volume/.gitkeep
|
||||||
|
|||||||
@@ -8,26 +8,24 @@ services:
|
|||||||
- USER_UID=1000
|
- USER_UID=1000
|
||||||
- USER_GID=1000
|
- USER_GID=1000
|
||||||
- GITEA__database__DB_TYPE=mysql
|
- GITEA__database__DB_TYPE=mysql
|
||||||
- GITEA__database__HOST=db:3306
|
- GITEA__database__HOST=gitea-mariadb:3306
|
||||||
- GITEA__database__NAME=gitea
|
- GITEA__database__NAME=gitea
|
||||||
- GITEA__database__USER=gitea
|
- GITEA__database__USER=gitea
|
||||||
- GITEA__database__PASSWD=A68nMCsvzyvueYwE
|
- GITEA__database__PASSWD=A68nMCsvzyvueYwE
|
||||||
- SSH_DOMAIN=git.zinomedia.de
|
- SSH_DOMAIN=ssh.git.zinomedia.de
|
||||||
- ROOT_URL=https://git.zinomedia.de
|
- ROOT_URL=https://git.zinomedia.de
|
||||||
- SSH_PORT=222
|
|
||||||
- SSH_LISTEN_PORT=22
|
- SSH_LISTEN_PORT=22
|
||||||
restart: "unless-stopped"
|
restart: "unless-stopped"
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/gitea-data:/data
|
- ./volumes/gitea-data:/data
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
ports:
|
|
||||||
- "8083:3000"
|
|
||||||
- "222:22"
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- gitea-mariadb
|
||||||
networks:
|
networks:
|
||||||
- web
|
- web
|
||||||
|
ports:
|
||||||
|
- "222:22"
|
||||||
|
|
||||||
gitea-mariadb:
|
gitea-mariadb:
|
||||||
image: linuxserver/mariadb:latest
|
image: linuxserver/mariadb:latest
|
||||||
@@ -47,3 +45,4 @@ networks:
|
|||||||
web:
|
web:
|
||||||
external: true
|
external: true
|
||||||
name: web
|
name: web
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user