mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-12-14 10:24:53 +01:00
24 lines
497 B
YAML
Executable File
24 lines
497 B
YAML
Executable File
services:
|
|
nebula-sync:
|
|
image: ghcr.io/lovelaze/nebula-sync:latest
|
|
container_name: nebula-sync
|
|
secrets:
|
|
- password
|
|
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 |