Refactor Docker Compose configurations and add deployment workflows for cloud-pc and mini-pc services
Deploy cloud-pc / deploy (push) Failing after 15s
Deploy mini-pc / deploy (push) Failing after 4s
Deploy ru-vps / deploy (push) Failing after 5s

This commit is contained in:
Dmitry
2026-05-27 15:41:15 +03:00
parent 90128b237d
commit dc3ff78d6d
39 changed files with 603 additions and 29 deletions
View File
+19
View File
@@ -0,0 +1,19 @@
ada-dev.ru {
reverse_proxy 10.122.62.51:7080
}
cloud.ada-dev.ru {
reverse_proxy 10.122.62.51:8081
}
git.ada-dev.ru {
reverse_proxy 10.122.62.51:3002
}
pass.ada-dev.ru {
reverse_proxy 10.122.62.95:10380
}
# projects.ada-dev.ru {
# reverse_proxy 10.122.62.51:4567
# }
+14
View File
@@ -0,0 +1,14 @@
services:
caddy:
image: caddy:2-alpine
container_name: caddy
restart: unless-stopped
ports:
- "80:80"
- "443:443"
- "443:443/udp"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile:ro
- /opt/data/caddy:/data
- /opt/configs/caddy:/config
networks: {}
+11
View File
@@ -0,0 +1,11 @@
services:
gitea-runner:
image: gitea/act_runner:latest
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /opt/data/gitea-runner:/data
environment:
GITEA_INSTANCE_URL: https://git.ada-dev.ru
GITEA_RUNNER_REGISTRATION_TOKEN: ${TOKEN}
GITEA_RUNNER_NAME: ru-vps-runner
+15
View File
@@ -0,0 +1,15 @@
services:
zerotier:
container_name: zerotier
restart: unless-stopped
network_mode: host
cap_add:
- NET_ADMIN
- SYS_ADMIN
devices:
- /dev/net/tun
volumes:
- /opt/data/zerotier:/var/lib/zerotier-one
image: zerotier/zerotier:latest
command: ["743993800fa5a34c"]
networks: {}