changes
This commit is contained in:
parent
47ac0a2851
commit
4c0fe2c747
@ -1,73 +1,73 @@
|
|||||||
services:
|
services:
|
||||||
gitea:
|
gitea:
|
||||||
image: gitea/gitea:1.22.0
|
image: gitea/gitea:1.22.0
|
||||||
container_name: gitea
|
container_name: gitea
|
||||||
env_file:
|
env_file:
|
||||||
- /data/secrets/${SERVER_DOMAIN}/${SERVER_DOMAIN}.env
|
- /data/secrets/${SERVER_DOMAIN}/${SERVER_DOMAIN}.env
|
||||||
environment:
|
environment:
|
||||||
APP_NAME: "Gitea"
|
APP_NAME: "Gitea"
|
||||||
USER_UID: 1000
|
USER_UID: 1000
|
||||||
USER_GID: 1000
|
USER_GID: 1000
|
||||||
USER: git
|
USER: git
|
||||||
RUN_MODE: prod
|
RUN_MODE: prod
|
||||||
DOMAIN: git.${SERVER_DOMAIN}
|
DOMAIN: git.${SERVER_DOMAIN}
|
||||||
ROOT_URL: https://git.${SERVER_DOMAIN}
|
ROOT_URL: https://git.${SERVER_DOMAIN}
|
||||||
HTTP_PORT: 3000
|
HTTP_PORT: 3000
|
||||||
|
|
||||||
SSH_PORT: 22
|
SSH_PORT: 22
|
||||||
SSH_LISTEN_PORT: 22
|
SSH_LISTEN_PORT: 22
|
||||||
SSH_DOMAIN: git.${SERVER_DOMAIN}
|
SSH_DOMAIN: git.${SERVER_DOMAIN}
|
||||||
|
|
||||||
GITEA__cache__ENABLED: true
|
GITEA__cache__ENABLED: true
|
||||||
GITEA__cache__ADAPTER: redis
|
GITEA__cache__ADAPTER: redis
|
||||||
GITEA__cache__HOST: redis://gitea-cache:6379/0?pool_size=100&idle_timeout=180s
|
GITEA__cache__HOST: redis://gitea-cache:6379/0?pool_size=100&idle_timeout=180s
|
||||||
GITEA__cache__ITEM_TTL: 24
|
GITEA__cache__ITEM_TTL: 24
|
||||||
GITEA__database__DB_TYPE: postgres
|
GITEA__database__DB_TYPE: postgres
|
||||||
GITEA__database__HOST: postgres:5432
|
GITEA__database__HOST: postgres:5432
|
||||||
GITEA__database__NAME: gitea
|
GITEA__database__NAME: gitea
|
||||||
GITEA__database__USER: gitea
|
GITEA__database__USER: gitea
|
||||||
|
|
||||||
GITEA__security__INSTALL_LOCK: true
|
GITEA__security__INSTALL_LOCK: true
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- proxynet
|
- proxynet
|
||||||
depends_on:
|
depends_on:
|
||||||
gitea-cache:
|
gitea-cache:
|
||||||
condition: service_started
|
condition: service_started
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.gitea.rule=Host(`git.${SERVER_DOMAIN}`)"
|
- "traefik.http.routers.gitea.rule=Host(`git.${SERVER_DOMAIN}`)"
|
||||||
- "traefik.http.routers.gitea.entrypoints=https"
|
- "traefik.http.routers.gitea.entrypoints=https"
|
||||||
- "traefik.http.routers.gitea.service=gitea-service"
|
- "traefik.http.routers.gitea.service=gitea-service"
|
||||||
- "traefik.http.services.gitea-service.loadbalancer.server.port=3000"
|
- "traefik.http.services.gitea-service.loadbalancer.server.port=3000"
|
||||||
logging:
|
logging:
|
||||||
driver: "json-file"
|
driver: "json-file"
|
||||||
options:
|
options:
|
||||||
max-size: "1m"
|
max-size: "1m"
|
||||||
volumes:
|
volumes:
|
||||||
- /data/appdata/gitea:/data
|
- /data/appdata/gitea:/data
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
- "22:22"
|
- "22:22"
|
||||||
|
|
||||||
gitea-cache:
|
gitea-cache:
|
||||||
container_name: gitea-cache
|
container_name: gitea-cache
|
||||||
image: redis:7.2.5-alpine3.20
|
image: redis:7.2.5-alpine3.20
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- proxynet
|
- proxynet
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "redis-cli", "ping"]
|
test: ["CMD", "redis-cli", "ping"]
|
||||||
interval: 15s
|
interval: 15s
|
||||||
timeout: 3s
|
timeout: 3s
|
||||||
retries: 30
|
retries: 30
|
||||||
logging:
|
logging:
|
||||||
driver: "json-file"
|
driver: "json-file"
|
||||||
options:
|
options:
|
||||||
max-size: "1m"
|
max-size: "1m"
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
proxynet:
|
proxynet:
|
||||||
external: true
|
external: true
|
||||||
|
Loading…
Reference in New Issue
Block a user