NoCloud platform maintenance helper.
To get start you need operator-config.yaml file
duration: 10
composePrefix: "nocloud-operator_"
registries:
# - username: "username"
# password: "pass"
# serverAddress: "ghcr.io"
dns:
- "8.8.8.8"
- "8.8.4.4"Duration - the amount of time in seconds after which the operator will start the update
ComposePrefix - name of project where you start you containers
Username, Password, ServerAddress - credentials for docker
DNS - array of default dns ips
version: "3.8"
services:
operator:
env_file:
- .env
container_name: operator
image: ghcr.io/slntopp/nocloud/operator:latest
restart: always
volumes:
- ./operator-config.yml:/operator-config.yml
- ./docker-compose.yml:/docker-compose.yml
- /var/run/docker.sock:/var/run/docker.sockSee Labels reference to learn how to configure operators behaviour.