Files
infra/cloud-pc/gitea/docker-compose.yml
T
Dmitry dc3ff78d6d
Deploy cloud-pc / deploy (push) Failing after 15s
Deploy mini-pc / deploy (push) Failing after 4s
Deploy ru-vps / deploy (push) Failing after 5s
Refactor Docker Compose configurations and add deployment workflows for cloud-pc and mini-pc services
2026-05-27 15:41:15 +03:00

24 lines
463 B
YAML

services:
gitea:
environment:
USER_GID: "1000"
USER_UID: "1000"
hostname: gitea
image: gitea/gitea:latest
network_mode: bridge
ports:
- target: 3000
published: "3002"
protocol: tcp
- target: 22
published: "2222"
protocol: tcp
restart: unless-stopped
volumes:
- type: bind
source: /opt/data/gitea
target: /data
networks:
default:
name: gitea_default