27 lines
608 B
YAML
27 lines
608 B
YAML
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:
|