Oleg Agent v1.0: Dockerfile, entrypoint, docker-compose, install.sh

This commit is contained in:
Максимка
2026-02-26 22:32:14 +03:00
parent c8d5d28a11
commit 961e41d361
4 changed files with 156 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
services:
agent:
build: .
image: oleg-agent:latest
container_name: oleg-agent
hostname: oleg-agent
restart: unless-stopped
stdin_open: true
tty: true
environment:
- GITEA_URL=http://git.dttb.ru
- GITEA_USER=oleg
- GITEA_PASS=OL260380eg
- PROXMOX_URL=https://10.0.0.250:8006
- NEXTCLOUD_URL=https://dttb.ru
volumes:
- agent-data:/workspace
- ./secrets:/secrets:ro
# Если NetBird в host mode:
# network_mode: host
extra_hosts:
- "git.dttb.ru:10.0.0.189"
- "dttb.ru:10.0.0.230"
volumes:
agent-data: