mirror of
https://github.com/daylinmorgan/git-server.git
synced 2024-11-14 16:17:53 -06:00
35 lines
635 B
YAML
35 lines
635 B
YAML
version: "3"
|
|
|
|
services:
|
|
gitea:
|
|
image: gitea/gitea:1.20.5
|
|
container_name: gitea
|
|
environment:
|
|
- USER_UID=1002
|
|
- USER_GID=100
|
|
restart: always
|
|
volumes:
|
|
- ./gitea:/data
|
|
- /home/git/.ssh/:/data/git/.ssh
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "2222:22"
|
|
networks:
|
|
- caddy
|
|
|
|
soft-serve:
|
|
image: charmcli/soft-serve:v0.5.2
|
|
volumes:
|
|
- ./soft/data:/soft-serve
|
|
ports:
|
|
- 23231:23231
|
|
- 23232:23232
|
|
- 23233:23233
|
|
- 9418:9418
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
caddy:
|
|
external: true
|
|
|