Compare commits

...

2 Commits

Author SHA1 Message Date
25357e9c2b how to run docker containers on adm
Some checks failed
continuous-integration/drone/push Build is failing
2024-08-26 13:11:15 +02:00
a3caf713c8 not pulling latest 2024-08-26 12:29:56 +02:00
3 changed files with 7 additions and 2 deletions

View File

@@ -13,6 +13,11 @@
* https://docs.oracle.com/en/learn/ol-linux-bonding/#for-additional-information - Bonding with Networkmanager
* u-boot-env: https://forum.armbian.com/topic/35780-with-new-uboot-env-esspressobin-v5-does-not-boot/
## adm01
* ``podman run -d --replace --pull=always --expose=5001 -p 127.0.0.1:5001:5001 --mount=type=bind,source=/etc/docker/registry-cache/config.yml,destination=/etc/docker/registry/config.yml --mount=type=bind,source=/data/container-dr-mirror,destination=/var/lib/registry --tz=Europe/Berlin --name=container-docker-mirror docker.io/library/registry:2``
* ``podman run --restart=always -d --replace --pull=always --expose=5000 -p 5000:5000 --mount=type=bind,source=/etc/docker/registry/config.yml,destination=/etc/docker/registry/config.yml --mount=type=bind,source=/data/container-registry,destination=/var/lib/registry --tz=Europe/Berlin --name=container-registry docker.io/library/registry:2``
# Datacenter: ring86
## Podman tricks

View File

@@ -49,7 +49,7 @@ job "drone-runner" {
}
volume_mount {
volume = "drone-runner"
destination = "/var/lib/docker"
destination = "/drone"
read_only = false
}

View File

@@ -61,7 +61,7 @@ job "gitea" {
}
config {
image = "docker.io/gitea/gitea:latest"
image = "docker.io/gitea/gitea"
ports = ["ssh", "http"]
force_pull = true
}