21 lines
535 B
YAML
21 lines
535 B
YAML
services:
|
|
gitea:
|
|
image: gitea/gitea:1.22
|
|
container_name: gitea-rd
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8088:3000"
|
|
- "2222:22"
|
|
environment:
|
|
USER_UID: 1000
|
|
USER_GID: 1000
|
|
|
|
GITEA__server__DOMAIN: "git.kolb.cc"
|
|
GITEA__server__ROOT_URL: "https://git.kolb.cc/"
|
|
GITEA__server__SSH_DOMAIN: "git.kolb.cc"
|
|
GITEA__server__SSH_PORT: "2222"
|
|
GITEA__server__PROTOCOL: "http"
|
|
|
|
volumes:
|
|
- /volume1/docker/gitea/data:/data
|
|
- /volume2/container-logs/gitea:/data/log |