mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-12-14 18:34:53 +01:00
25 lines
513 B
YAML
Executable File
25 lines
513 B
YAML
Executable File
services:
|
|
nebula-sync:
|
|
image: ghcr.io/lovelaze/nebula-sync:latest
|
|
container_name: nebula-sync
|
|
secrets:
|
|
- primary
|
|
- replikas
|
|
environment:
|
|
- PRIMARY=/run/secrets/primary
|
|
- REPLICAS=/run/secrets/replikas
|
|
- CLIENT_SKIP_TLS_VERIFICATION=true
|
|
|
|
- FULL_SYNC=true
|
|
- RUN_GRAVITY=true
|
|
- CRON=0 * * * *
|
|
labels:
|
|
|
|
wud.watch: true
|
|
wud.watch.digest: true
|
|
restart: always
|
|
secrets:
|
|
replikas:
|
|
file: .env.replikas
|
|
primary:
|
|
file: .env.primary |