update
This commit is contained in:
parent
eb0b0be4e5
commit
88f3eca348
1
rxr_gitea/.env
Normal file
1
rxr_gitea/.env
Normal file
@ -0,0 +1 @@
|
||||
GITEA_PATH=/root/gitea
|
46
rxr_gitea/docker-compose.yml
Normal file
46
rxr_gitea/docker-compose.yml
Normal file
@ -0,0 +1,46 @@
|
||||
version: "3"
|
||||
|
||||
networks:
|
||||
gitea:
|
||||
external: false
|
||||
|
||||
services:
|
||||
server:
|
||||
image: gitea/gitea:1.22.3
|
||||
container_name: gitea
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
- GITEA__database__DB_TYPE=postgres
|
||||
- GITEA__database__HOST=db:5432
|
||||
- GITEA__database__NAME=gitea
|
||||
- GITEA__database__USER=gitea
|
||||
- GITEA__database__PASSWD=gitea
|
||||
- APP_NAME='Zengtudor's git'
|
||||
- DOMAIN=git.zziyu.cn
|
||||
- SSH_DOMAIN=git.zziyu.cn
|
||||
- SSH_PORT=23
|
||||
restart: always
|
||||
networks:
|
||||
- gitea
|
||||
volumes:
|
||||
- ${GITEA_PATH}/gitea:/data
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
ports:
|
||||
- "3000:3000"
|
||||
- "23:22"
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
db:
|
||||
image: postgres:14
|
||||
restart: always
|
||||
environment:
|
||||
- POSTGRES_USER=gitea
|
||||
- POSTGRES_PASSWORD=gitea
|
||||
- POSTGRES_DB=gitea
|
||||
networks:
|
||||
- gitea
|
||||
volumes:
|
||||
- ${GITEA_PATH}/postgres:/var/lib/postgresql/data
|
Loading…
Reference in New Issue
Block a user