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
|
|
|
|
2022-08-14 18:16:59 -05:00
|
|
|
soft-serve:
|
2023-11-06 11:54:54 -06:00
|
|
|
container_name: soft-serve
|
|
|
|
image: charmcli/soft-serve:v0.7.2
|
2022-08-14 18:16:59 -05:00
|
|
|
volumes:
|
2022-08-15 01:01:37 -05:00
|
|
|
- ./soft/data:/soft-serve
|
2022-08-14 18:16:59 -05:00
|
|
|
ports:
|
|
|
|
- 23231:23231
|
2023-07-25 10:56:26 -05:00
|
|
|
- 23232:23232
|
|
|
|
- 23233:23233
|
|
|
|
- 9418:9418
|
|
|
|
restart: unless-stopped
|
2022-08-14 18:16:59 -05:00
|
|
|
|
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
|
|
|
|