2022-11-19 02:34:41 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
server:
|
2023-11-15 16:53:29 +00:00
|
|
|
image: gitea/gitea:1.21
|
2022-11-19 02:34:41 +00:00
|
|
|
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
|
2023-01-06 22:49:36 +00:00
|
|
|
- GITEA__server__HTTP_PORT=3000
|
|
|
|
- GITEA__server__LOCAL_ROOT_URL=http://gitea.local:3000/
|
|
|
|
- GITEA__server__ROOT_URL=http://gitea.local:3000/
|
2023-03-20 19:59:00 +00:00
|
|
|
- GITEA__actions__ENABLED=true
|
2023-02-12 22:15:47 +00:00
|
|
|
- GITEA__security__INSTALL_LOCK=true
|
2022-11-19 02:34:41 +00:00
|
|
|
restart: always
|
2023-04-20 03:30:14 +00:00
|
|
|
extra_hosts:
|
|
|
|
- "gitea.local:host-gateway"
|
2022-11-19 02:34:41 +00:00
|
|
|
volumes:
|
2023-10-09 17:51:47 +00:00
|
|
|
- gitea-data:/data
|
2022-11-19 02:34:41 +00:00
|
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2022-11-21 05:35:19 +00:00
|
|
|
# TODO: remove fixed host port number
|
2022-11-19 02:34:41 +00:00
|
|
|
ports:
|
|
|
|
- "3000:3000"
|
|
|
|
- "222:22"
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
|
|
|
|
db:
|
|
|
|
image: postgres:14
|
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=gitea
|
|
|
|
- POSTGRES_PASSWORD=gitea
|
|
|
|
- POSTGRES_DB=gitea
|
2023-02-28 17:19:42 +00:00
|
|
|
# Workaround below for lack of docker uid mapping. Change the container's postgres user's uid/gid to match the host user's
|
|
|
|
entrypoint: bash
|
|
|
|
command: -c 'usermod -u ${CERC_HOST_UID:-1000} postgres;groupmod -g ${CERC_HOST_GID:-1000} postgres;exec /usr/local/bin/docker-entrypoint.sh postgres'
|
2022-11-19 02:34:41 +00:00
|
|
|
volumes:
|
2023-10-09 17:51:47 +00:00
|
|
|
- postgres-data:/var/lib/postgresql/data
|
2023-03-25 03:21:44 +00:00
|
|
|
|
2023-10-09 17:51:47 +00:00
|
|
|
volumes:
|
|
|
|
gitea-data:
|
|
|
|
postgres-data:
|