个人轻量化使用,参考对比 后,
放弃 Gitlab ,选择 Docker 安装 gitea 查找最新版本
安装
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
version: "3.0" services: clash: image: gitea/gitea:1.23.7-rootless container_name: gitea restart: unless-stopped network_mode: bridge volumes: - /docker/gitea/data:/var/lib/gitea - /docker/gitea/config:/etc/gitea - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro ports: - 3120:3000 - 3122:2222 logging: options: max-size: "100m"
|