git-server/docker-compose.yml

36 lines
635 B
YAML
Raw Normal View History

2022-08-14 15:13:45 -05:00
version: "3"
services:
2022-08-14 22:25:35 -05:00
gitea:
2023-11-06 10:22:09 -06:00
image: gitea/gitea:1.20.5
2022-08-14 15:13:45 -05:00
container_name: gitea
environment:
2023-05-04 13:39:24 -05:00
- USER_UID=1002
- USER_GID=100
2022-08-14 15:13:45 -05:00
restart: always
volumes:
- ./gitea:/data
- /home/git/.ssh/:/data/git/.ssh
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
2023-07-25 10:56:26 -05:00
- "2222:22"
networks:
- caddy
2022-08-14 15:13:45 -05:00
soft-serve:
2023-07-25 10:56:26 -05:00
image: charmcli/soft-serve:v0.5.2
volumes:
- ./soft/data:/soft-serve
ports:
- 23231:23231
2023-07-25 10:56:26 -05:00
- 23232:23232
- 23233:23233
- 9418:9418
restart: unless-stopped
2023-07-25 10:56:26 -05:00
networks:
caddy:
2022-08-14 15:13:45 -05:00
external: true
2023-07-25 10:56:26 -05:00