2024-12-06 18:18:45 +00:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
networks:
|
|
|
|
gitea:
|
|
|
|
external: false
|
|
|
|
|
|
|
|
services:
|
|
|
|
server:
|
2024-12-15 23:57:30 +00:00
|
|
|
image: gitea/gitea:1.22.4
|
2024-12-06 18:18:45 +00:00
|
|
|
container_name: tea
|
|
|
|
environment:
|
|
|
|
- USER_UID=1000
|
|
|
|
- USER_GID=1000
|
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- gitea
|
|
|
|
volumes:
|
|
|
|
- ./data:/data
|
|
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
ports:
|
|
|
|
- "127.0.0.1:8082:3000"
|
2024-12-15 23:57:30 +00:00
|
|
|
- "0.0.0.0:2222:22"
|