ci: add Forgejo CI/CD pipeline with docker save/load deploy to prod
All checks were successful
CI/CD Pipeline / build-and-deploy (push) Successful in 1m24s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
vrubelroman 2026-06-30 18:55:21 +00:00
parent 8828375207
commit 1fe8deb0de
3 changed files with 122 additions and 0 deletions

View file

@ -2,6 +2,7 @@ services:
# Lichess Web Services (API)
lichess-api:
build: ./LichessWebServices
image: 192.168.8.174:3000/vrubel/lichess-api:latest
container_name: lichess-api
ports:
- "8002:8000"
@ -20,6 +21,7 @@ services:
# Telegram Bot
lichess-bot:
build: ./LichessClientTG_bot
image: 192.168.8.174:3000/vrubel/lichess-bot:latest
container_name: lichess-telegram-bot
volumes:
- ./LichessClientTG_bot/data:/app/data
@ -45,6 +47,7 @@ services:
build:
context: ./LichessClientTG_bot
dockerfile: Dockerfile.admin
image: 192.168.8.174:3000/vrubel/lichess-admin:latest
container_name: lichess-admin-bot
volumes:
- ./LichessClientTG_bot/data:/app/data
@ -62,6 +65,7 @@ services:
# Web View Interface
web-view:
build: ./LichessWebView
image: 192.168.8.174:3000/vrubel/lichess-web:latest
container_name: lichess-web-view
ports:
- "5000:5000"