21 lines
481 B
YAML
21 lines
481 B
YAML
networks:
|
|
immich_default:
|
|
external: true
|
|
|
|
services:
|
|
server:
|
|
image: docker.io/gitea/gitea:1.23.4
|
|
container_name: gitea
|
|
environment:
|
|
- USER_UID=1002
|
|
- USER_GID=100
|
|
restart: always
|
|
networks:
|
|
- immich_default
|
|
volumes:
|
|
- /srv/dev-disk-by-uuid-01803dad-cf8d-4540-9abe-ccf26592c371/cathulu/git/data:/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "3000:3000"
|
|
- "222:22" |