Compare commits

..

2 Commits

Author SHA1 Message Date
97ee3b122f modified conflict 2023-11-28 17:23:27 +01:00
71aba5cb37 modified server 2023-11-28 17:18:17 +01:00
2 changed files with 9 additions and 4 deletions

2
.gitignore vendored
View File

@@ -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

View File

@@ -12,21 +12,25 @@ services:
- 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
<<<<<<< HEAD
=======
ports: ports:
- "222:22" - "222:22"
>>>>>>> 707ec0e3d10cb32a00381e517b67422774638027
depends_on: depends_on:
- gitea-mariadb - gitea-mariadb
networks: networks:
- web - web
ports:
- "222:22"
gitea-mariadb: gitea-mariadb:
image: linuxserver/mariadb:latest image: linuxserver/mariadb:latest
@@ -46,3 +50,4 @@ networks:
web: web:
external: true external: true
name: web name: web