⬆️ Update to 1.16.7
This commit is contained in:
parent
1a28336a5e
commit
c91904822a
1 changed files with 20 additions and 22 deletions
|
@ -2,39 +2,37 @@ version: "3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
gitea:
|
gitea:
|
||||||
image: gitea/gitea:1.12.4
|
image: gitea/gitea:1.16.7
|
||||||
# au moment du déployement en prod mettre
|
|
||||||
# gitea/gitea:1.12.4
|
|
||||||
# qui est la dernière version stable, non pas la latest
|
|
||||||
environment:
|
environment:
|
||||||
|
|
||||||
# Git user (1000 est réserver pour l'utilisateur Aurore)
|
# Git user (1000 est réservé pour l'utilisateur Aurore)
|
||||||
- USER_UID=1001
|
USER_UID: "1001"
|
||||||
- USER_GID=1001
|
USER_GID: "1001"
|
||||||
|
|
||||||
# Databse Postreg
|
# Database Postgres
|
||||||
- DB_TYPE=postgres
|
DB_TYPE: "postgres"
|
||||||
- DB_NAME=gitea
|
DB_NAME: "gitea"
|
||||||
- DB_USER=gitea
|
DB_USER: "gitea"
|
||||||
- "DB_HOST=${DB_HOST}"
|
DB_HOST: "${DB_HOST}"
|
||||||
- "DB_PASSWD=${DB_PASSWD}"
|
DB_PASSWD: "${DB_PASSWD}"
|
||||||
|
|
||||||
# General settings
|
# General settings
|
||||||
- "APP_NAME=Gitea: Service Git d'Aurore"
|
APP_NAME: "Gitea: Service Git d'Aurore"
|
||||||
- RUN_MODE=prod
|
RUN_MODE: "dev"
|
||||||
- DOMAIN=gitea.auro.re
|
DOMAIN: "gitea.auro.re"
|
||||||
- SSH_DOMAIN=gitea.auro.re
|
SSH_DOMAIN: "gitea.auro.re"
|
||||||
- SSH_PORT=2222
|
SSH_PORT: "2222"
|
||||||
- "ROOT_URL=https://gitea.auro.re"
|
ROOT_URL: "https://gitea.auro.re"
|
||||||
# - LFS_START_SERVER=true # Git Large File Storage
|
# LFS_START_SERVER: "true" # Git Large File Storage
|
||||||
|
|
||||||
# Login settings
|
# Login settings
|
||||||
- DISABLE_REGISTRATION=false
|
DISABLE_REGISTRATION: "true"
|
||||||
- ENABLE_OPENID_SIGNIN=false
|
ENABLE_OPENID_SIGNIN: "false"
|
||||||
|
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/data_gitea:/data
|
- /mnt/data_gitea:/data
|
||||||
|
- /mnt/data_gitea/data:/app/gitea/data
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
ports:
|
ports:
|
||||||
|
|
Loading…
Reference in a new issue