mirror of
https://github.com/kevinveenbirkenbach/docker-volume-backup.git
synced 2025-12-27 02:56:36 +00:00
fix(restore): allow restoring files from different source volume
The file restore command previously assumed that the target volume name was identical to the volume name used in the backup path. This caused restores to fail (exit code 2) when restoring data from one volume backup into a different target volume. Introduce an optional --source-volume argument for `baudolo-restore files` to explicitly specify the backup source volume while keeping the target volume unchanged. - Default behavior remains fully backward-compatible - Enables restoring backups from volume A into volume B - Fixes E2E test scenario restoring into a new volume Tests: - Update E2E file restore test to use --source-volume https://chatgpt.com/share/694ec70f-1d7c-800f-b221-9d22e4b0775e
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,2 +1,2 @@
|
||||
databases.csv
|
||||
__pycache__
|
||||
__pycache__
|
||||
artifacts/
|
||||
@@ -1,35 +0,0 @@
|
||||
=== docker -H ps -a ===
|
||||
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
||||
18ef5793cfc5 postgres:16 "docker-entrypoint.s…" 4 seconds ago Up 3 seconds 5432/tcp baudolo-e2e-postgres-nocopy-15d1e23327-pg
|
||||
875008fe1e9e postgres:16 "docker-entrypoint.s…" 7 seconds ago Up 6 seconds 5432/tcp baudolo-e2e-postgres-full-e9784b8d4b-pg
|
||||
0b87b8fdc76b mariadb:11 "docker-entrypoint.s…" 44 seconds ago Up 43 seconds 3306/tcp baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb
|
||||
c5ac9491eae2 mariadb:11 "docker-entrypoint.s…" 54 seconds ago Up 53 seconds 3306/tcp baudolo-e2e-mariadb-full-0790ca5d41-mariadb
|
||||
|
||||
=== docker -H images ===
|
||||
WARNING: This output is designed for human readability. For machine-readable output, please use --format.
|
||||
IMAGE ID DISK USAGE CONTENT SIZE EXTRA
|
||||
alpine:3.20 765942a40399 12.2MB 3.71MB
|
||||
baudolo:local 4fb7be431f63 763MB 368MB
|
||||
ghcr.io/kevinveenbirkenbach/alpine-rsync:latest 049c6ec3dad7 21.1MB 7.53MB
|
||||
mariadb:11 1cac8492bd78 465MB 111MB U
|
||||
postgres:16 d4c3314b2dd7 612MB 136MB U
|
||||
|
||||
=== docker -H network ls ===
|
||||
NETWORK ID NAME DRIVER SCOPE
|
||||
273bd12dbccf bridge bridge local
|
||||
6077eae1cce0 host host local
|
||||
2e037141bfd4 none null local
|
||||
|
||||
=== docker -H volume ls ===
|
||||
DRIVER VOLUME NAME
|
||||
local baudolo-e2e-mariadb-full-0790ca5d41-mariadb-vol
|
||||
local baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb-vol
|
||||
local baudolo-e2e-postgres-full-e9784b8d4b-pg-vol
|
||||
local baudolo-e2e-postgres-nocopy-15d1e23327-pg-vol
|
||||
|
||||
=== docker -H system df ===
|
||||
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
|
||||
Images 5 2 1.785GB 1.076GB (60%)
|
||||
Containers 4 4 90.11kB 0B (0%)
|
||||
Local Volumes 4 4 433MB 0B (0%)
|
||||
Build Cache 0 0 0B 0B
|
||||
@@ -1,25 +0,0 @@
|
||||
=== docker -H ps -a ===
|
||||
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
||||
|
||||
=== docker -H images ===
|
||||
WARNING: This output is designed for human readability. For machine-readable output, please use --format.
|
||||
IMAGE ID DISK USAGE CONTENT SIZE EXTRA
|
||||
alpine:3.20 765942a40399 12.2MB 3.71MB
|
||||
baudolo:local 0bc9b158f3e8 763MB 368MB
|
||||
ghcr.io/kevinveenbirkenbach/alpine-rsync:latest 049c6ec3dad7 21.1MB 7.53MB
|
||||
|
||||
=== docker -H network ls ===
|
||||
NETWORK ID NAME DRIVER SCOPE
|
||||
43f0f11bd281 bridge bridge local
|
||||
2390bc99b893 host host local
|
||||
0f26ae890b2e none null local
|
||||
|
||||
=== docker -H volume ls ===
|
||||
DRIVER VOLUME NAME
|
||||
|
||||
=== docker -H system df ===
|
||||
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
|
||||
Images 3 0 796.2MB 10.82kB (0%)
|
||||
Containers 0 0 0B 0B
|
||||
Local Volumes 0 0 0B 0B
|
||||
Build Cache 0 0 0B 0B
|
||||
@@ -1,25 +0,0 @@
|
||||
=== docker -H ps -a ===
|
||||
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
||||
|
||||
=== docker -H images ===
|
||||
WARNING: This output is designed for human readability. For machine-readable output, please use --format.
|
||||
IMAGE ID DISK USAGE CONTENT SIZE EXTRA
|
||||
alpine:3.20 765942a40399 12.2MB 3.71MB
|
||||
baudolo:local 84e1ce4363e7 763MB 368MB
|
||||
ghcr.io/kevinveenbirkenbach/alpine-rsync:latest 049c6ec3dad7 21.1MB 7.53MB
|
||||
|
||||
=== docker -H network ls ===
|
||||
NETWORK ID NAME DRIVER SCOPE
|
||||
f9303d265b7c bridge bridge local
|
||||
5bb6398b93ad host host local
|
||||
bf26d6f0dd45 none null local
|
||||
|
||||
=== docker -H volume ls ===
|
||||
DRIVER VOLUME NAME
|
||||
|
||||
=== docker -H system df ===
|
||||
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
|
||||
Images 3 0 796.3MB 10.82kB (0%)
|
||||
Containers 0 0 0B 0B
|
||||
Local Volumes 0 0 0B 0B
|
||||
Build Cache 0 0 0B 0B
|
||||
@@ -1,121 +0,0 @@
|
||||
=== Host docker version ===
|
||||
Client:
|
||||
Version: 29.1.1
|
||||
API version: 1.52
|
||||
Go version: go1.25.4 X:nodwarf5
|
||||
Git commit: 0aedba58c2
|
||||
Built: Fri Nov 28 14:28:26 2025
|
||||
OS/Arch: linux/amd64
|
||||
Context: default
|
||||
|
||||
Server:
|
||||
Engine:
|
||||
Version: 29.1.1
|
||||
API version: 1.52 (minimum version 1.44)
|
||||
Go version: go1.25.4 X:nodwarf5
|
||||
Git commit: 9a84135d52
|
||||
Built: Fri Nov 28 14:28:26 2025
|
||||
OS/Arch: linux/amd64
|
||||
Experimental: false
|
||||
containerd:
|
||||
Version: v2.2.0
|
||||
GitCommit: 1c4457e00facac03ce1d75f7b6777a7a851e5c41.m
|
||||
runc:
|
||||
Version: 1.4.0
|
||||
GitCommit:
|
||||
docker-init:
|
||||
Version: 0.19.0
|
||||
GitCommit: de40ad0
|
||||
|
||||
=== Host docker info ===
|
||||
Client:
|
||||
Version: 29.1.1
|
||||
Context: default
|
||||
Debug Mode: false
|
||||
Plugins:
|
||||
compose: Docker Compose (Docker Inc.)
|
||||
Version: 2.40.3
|
||||
Path: /usr/lib/docker/cli-plugins/docker-compose
|
||||
|
||||
Server:
|
||||
Containers: 18
|
||||
Running: 17
|
||||
Paused: 0
|
||||
Stopped: 1
|
||||
Images: 79
|
||||
Server Version: 29.1.1
|
||||
Storage Driver: overlay2
|
||||
Backing Filesystem: extfs
|
||||
Supports d_type: true
|
||||
Using metacopy: true
|
||||
Native Overlay Diff: false
|
||||
userxattr: false
|
||||
Logging Driver: json-file
|
||||
Cgroup Driver: systemd
|
||||
Cgroup Version: 2
|
||||
Plugins:
|
||||
Volume: local
|
||||
Network: bridge host ipvlan macvlan null overlay
|
||||
Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
|
||||
CDI spec directories:
|
||||
/etc/cdi
|
||||
/var/run/cdi
|
||||
Swarm: inactive
|
||||
Runtimes: runc io.containerd.runc.v2
|
||||
Default Runtime: runc
|
||||
Init Binary: docker-init
|
||||
containerd version: 1c4457e00facac03ce1d75f7b6777a7a851e5c41.m
|
||||
runc version:
|
||||
init version: de40ad0
|
||||
Security Options:
|
||||
apparmor
|
||||
seccomp
|
||||
Profile: builtin
|
||||
cgroupns
|
||||
Kernel Version: 6.12.62-1-MANJARO
|
||||
Operating System: Manjaro Linux
|
||||
OSType: linux
|
||||
Architecture: x86_64
|
||||
CPUs: 20
|
||||
Total Memory: 62.5GiB
|
||||
Name: msi-stealth-gs66
|
||||
ID: f68c344d-ed27-440f-8f77-fb048e1a4ea4
|
||||
Docker Root Dir: /var/lib/docker
|
||||
Debug Mode: false
|
||||
Experimental: false
|
||||
Insecure Registries:
|
||||
127.0.0.0/8
|
||||
::1/128
|
||||
Live Restore Enabled: false
|
||||
Firewall Backend: iptables
|
||||
|
||||
|
||||
=== DinD reachable? (docker -H tcp://127.0.0.1:2375 version) ===
|
||||
Client:
|
||||
Version: 29.1.1
|
||||
API version: 1.52
|
||||
Go version: go1.25.4 X:nodwarf5
|
||||
Git commit: 0aedba58c2
|
||||
Built: Fri Nov 28 14:28:26 2025
|
||||
OS/Arch: linux/amd64
|
||||
Context: default
|
||||
|
||||
Server: Docker Engine - Community
|
||||
Engine:
|
||||
Version: 29.1.3
|
||||
API version: 1.52 (minimum version 1.44)
|
||||
Go version: go1.25.5
|
||||
Git commit: fbf3ed2
|
||||
Built: Fri Dec 12 14:51:14 2025
|
||||
OS/Arch: linux/amd64
|
||||
Experimental: false
|
||||
containerd:
|
||||
Version: v2.2.0
|
||||
GitCommit: 1c4457e00facac03ce1d75f7b6777a7a851e5c41
|
||||
runc:
|
||||
Version: 1.3.4
|
||||
GitCommit: v1.3.4-0-gd6d73eb
|
||||
docker-init:
|
||||
Version: 0.19.0
|
||||
GitCommit: de40ad0
|
||||
|
||||
@@ -1,121 +0,0 @@
|
||||
=== Host docker version ===
|
||||
Client:
|
||||
Version: 29.1.1
|
||||
API version: 1.52
|
||||
Go version: go1.25.4 X:nodwarf5
|
||||
Git commit: 0aedba58c2
|
||||
Built: Fri Nov 28 14:28:26 2025
|
||||
OS/Arch: linux/amd64
|
||||
Context: default
|
||||
|
||||
Server:
|
||||
Engine:
|
||||
Version: 29.1.1
|
||||
API version: 1.52 (minimum version 1.44)
|
||||
Go version: go1.25.4 X:nodwarf5
|
||||
Git commit: 9a84135d52
|
||||
Built: Fri Nov 28 14:28:26 2025
|
||||
OS/Arch: linux/amd64
|
||||
Experimental: false
|
||||
containerd:
|
||||
Version: v2.2.0
|
||||
GitCommit: 1c4457e00facac03ce1d75f7b6777a7a851e5c41.m
|
||||
runc:
|
||||
Version: 1.4.0
|
||||
GitCommit:
|
||||
docker-init:
|
||||
Version: 0.19.0
|
||||
GitCommit: de40ad0
|
||||
|
||||
=== Host docker info ===
|
||||
Client:
|
||||
Version: 29.1.1
|
||||
Context: default
|
||||
Debug Mode: false
|
||||
Plugins:
|
||||
compose: Docker Compose (Docker Inc.)
|
||||
Version: 2.40.3
|
||||
Path: /usr/lib/docker/cli-plugins/docker-compose
|
||||
|
||||
Server:
|
||||
Containers: 18
|
||||
Running: 17
|
||||
Paused: 0
|
||||
Stopped: 1
|
||||
Images: 83
|
||||
Server Version: 29.1.1
|
||||
Storage Driver: overlay2
|
||||
Backing Filesystem: extfs
|
||||
Supports d_type: true
|
||||
Using metacopy: true
|
||||
Native Overlay Diff: false
|
||||
userxattr: false
|
||||
Logging Driver: json-file
|
||||
Cgroup Driver: systemd
|
||||
Cgroup Version: 2
|
||||
Plugins:
|
||||
Volume: local
|
||||
Network: bridge host ipvlan macvlan null overlay
|
||||
Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
|
||||
CDI spec directories:
|
||||
/etc/cdi
|
||||
/var/run/cdi
|
||||
Swarm: inactive
|
||||
Runtimes: io.containerd.runc.v2 runc
|
||||
Default Runtime: runc
|
||||
Init Binary: docker-init
|
||||
containerd version: 1c4457e00facac03ce1d75f7b6777a7a851e5c41.m
|
||||
runc version:
|
||||
init version: de40ad0
|
||||
Security Options:
|
||||
apparmor
|
||||
seccomp
|
||||
Profile: builtin
|
||||
cgroupns
|
||||
Kernel Version: 6.12.62-1-MANJARO
|
||||
Operating System: Manjaro Linux
|
||||
OSType: linux
|
||||
Architecture: x86_64
|
||||
CPUs: 20
|
||||
Total Memory: 62.5GiB
|
||||
Name: msi-stealth-gs66
|
||||
ID: f68c344d-ed27-440f-8f77-fb048e1a4ea4
|
||||
Docker Root Dir: /var/lib/docker
|
||||
Debug Mode: false
|
||||
Experimental: false
|
||||
Insecure Registries:
|
||||
127.0.0.0/8
|
||||
::1/128
|
||||
Live Restore Enabled: false
|
||||
Firewall Backend: iptables
|
||||
|
||||
|
||||
=== DinD reachable? (docker -H tcp://127.0.0.1:2375 version) ===
|
||||
Client:
|
||||
Version: 29.1.1
|
||||
API version: 1.52
|
||||
Go version: go1.25.4 X:nodwarf5
|
||||
Git commit: 0aedba58c2
|
||||
Built: Fri Nov 28 14:28:26 2025
|
||||
OS/Arch: linux/amd64
|
||||
Context: default
|
||||
|
||||
Server: Docker Engine - Community
|
||||
Engine:
|
||||
Version: 29.1.3
|
||||
API version: 1.52 (minimum version 1.44)
|
||||
Go version: go1.25.5
|
||||
Git commit: fbf3ed2
|
||||
Built: Fri Dec 12 14:51:14 2025
|
||||
OS/Arch: linux/amd64
|
||||
Experimental: false
|
||||
containerd:
|
||||
Version: v2.2.0
|
||||
GitCommit: 1c4457e00facac03ce1d75f7b6777a7a851e5c41
|
||||
runc:
|
||||
Version: 1.3.4
|
||||
GitCommit: v1.3.4-0-gd6d73eb
|
||||
docker-init:
|
||||
Version: 0.19.0
|
||||
GitCommit: de40ad0
|
||||
|
||||
@@ -1,121 +0,0 @@
|
||||
=== Host docker version ===
|
||||
Client:
|
||||
Version: 29.1.1
|
||||
API version: 1.52
|
||||
Go version: go1.25.4 X:nodwarf5
|
||||
Git commit: 0aedba58c2
|
||||
Built: Fri Nov 28 14:28:26 2025
|
||||
OS/Arch: linux/amd64
|
||||
Context: default
|
||||
|
||||
Server:
|
||||
Engine:
|
||||
Version: 29.1.1
|
||||
API version: 1.52 (minimum version 1.44)
|
||||
Go version: go1.25.4 X:nodwarf5
|
||||
Git commit: 9a84135d52
|
||||
Built: Fri Nov 28 14:28:26 2025
|
||||
OS/Arch: linux/amd64
|
||||
Experimental: false
|
||||
containerd:
|
||||
Version: v2.2.0
|
||||
GitCommit: 1c4457e00facac03ce1d75f7b6777a7a851e5c41.m
|
||||
runc:
|
||||
Version: 1.4.0
|
||||
GitCommit:
|
||||
docker-init:
|
||||
Version: 0.19.0
|
||||
GitCommit: de40ad0
|
||||
|
||||
=== Host docker info ===
|
||||
Client:
|
||||
Version: 29.1.1
|
||||
Context: default
|
||||
Debug Mode: false
|
||||
Plugins:
|
||||
compose: Docker Compose (Docker Inc.)
|
||||
Version: 2.40.3
|
||||
Path: /usr/lib/docker/cli-plugins/docker-compose
|
||||
|
||||
Server:
|
||||
Containers: 18
|
||||
Running: 17
|
||||
Paused: 0
|
||||
Stopped: 1
|
||||
Images: 87
|
||||
Server Version: 29.1.1
|
||||
Storage Driver: overlay2
|
||||
Backing Filesystem: extfs
|
||||
Supports d_type: true
|
||||
Using metacopy: true
|
||||
Native Overlay Diff: false
|
||||
userxattr: false
|
||||
Logging Driver: json-file
|
||||
Cgroup Driver: systemd
|
||||
Cgroup Version: 2
|
||||
Plugins:
|
||||
Volume: local
|
||||
Network: bridge host ipvlan macvlan null overlay
|
||||
Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
|
||||
CDI spec directories:
|
||||
/etc/cdi
|
||||
/var/run/cdi
|
||||
Swarm: inactive
|
||||
Runtimes: io.containerd.runc.v2 runc
|
||||
Default Runtime: runc
|
||||
Init Binary: docker-init
|
||||
containerd version: 1c4457e00facac03ce1d75f7b6777a7a851e5c41.m
|
||||
runc version:
|
||||
init version: de40ad0
|
||||
Security Options:
|
||||
apparmor
|
||||
seccomp
|
||||
Profile: builtin
|
||||
cgroupns
|
||||
Kernel Version: 6.12.62-1-MANJARO
|
||||
Operating System: Manjaro Linux
|
||||
OSType: linux
|
||||
Architecture: x86_64
|
||||
CPUs: 20
|
||||
Total Memory: 62.5GiB
|
||||
Name: msi-stealth-gs66
|
||||
ID: f68c344d-ed27-440f-8f77-fb048e1a4ea4
|
||||
Docker Root Dir: /var/lib/docker
|
||||
Debug Mode: false
|
||||
Experimental: false
|
||||
Insecure Registries:
|
||||
127.0.0.0/8
|
||||
::1/128
|
||||
Live Restore Enabled: false
|
||||
Firewall Backend: iptables
|
||||
|
||||
|
||||
=== DinD reachable? (docker -H tcp://127.0.0.1:2375 version) ===
|
||||
Client:
|
||||
Version: 29.1.1
|
||||
API version: 1.52
|
||||
Go version: go1.25.4 X:nodwarf5
|
||||
Git commit: 0aedba58c2
|
||||
Built: Fri Nov 28 14:28:26 2025
|
||||
OS/Arch: linux/amd64
|
||||
Context: default
|
||||
|
||||
Server: Docker Engine - Community
|
||||
Engine:
|
||||
Version: 29.1.3
|
||||
API version: 1.52 (minimum version 1.44)
|
||||
Go version: go1.25.5
|
||||
Git commit: fbf3ed2
|
||||
Built: Fri Dec 12 14:51:14 2025
|
||||
OS/Arch: linux/amd64
|
||||
Experimental: false
|
||||
containerd:
|
||||
Version: v2.2.0
|
||||
GitCommit: 1c4457e00facac03ce1d75f7b6777a7a851e5c41
|
||||
runc:
|
||||
Version: 1.3.4
|
||||
GitCommit: v1.3.4-0-gd6d73eb
|
||||
docker-init:
|
||||
Version: 0.19.0
|
||||
GitCommit: de40ad0
|
||||
|
||||
@@ -1,125 +0,0 @@
|
||||
2025-12-26T14:12:41.198580901+01:00 image pull ghcr.io/kevinveenbirkenbach/alpine-rsync:latest (name=ghcr.io/kevinveenbirkenbach/alpine-rsync, org.opencontainers.image.created=2025-12-26T11:16:41.250Z, org.opencontainers.image.description=alpine image with rsync, org.opencontainers.image.licenses=AGPL-3.0, org.opencontainers.image.revision=44d48fb12106e82de8e0bb9c374f6a2c0c2b542c, org.opencontainers.image.source=https://github.com/kevinveenbirkenbach/alpine-rsync, org.opencontainers.image.title=alpine-rsync, org.opencontainers.image.url=https://github.com/kevinveenbirkenbach/alpine-rsync, org.opencontainers.image.version=main)
|
||||
2025-12-26T14:12:45.133326142+01:00 image pull alpine:3.20 (name=alpine)
|
||||
2025-12-26T14:12:49.461261470+01:00 image load sha256:4fb7be431f6313dc97e12fe2b3b4bae98a938f28fe12d44ff5214c9ec78b3f25 (name=sha256:4fb7be431f6313dc97e12fe2b3b4bae98a938f28fe12d44ff5214c9ec78b3f25)
|
||||
2025-12-26T14:12:50.069197321+01:00 volume create baudolo-e2e-files-full-f0b22fe71a-vol-src (driver=local)
|
||||
2025-12-26T14:12:50.235055365+01:00 container create 972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1 (image=alpine:3.20, name=zen_northcutt)
|
||||
2025-12-26T14:12:50.237279995+01:00 container attach 972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1 (image=alpine:3.20, name=zen_northcutt)
|
||||
2025-12-26T14:12:50.255948524+01:00 volume mount baudolo-e2e-files-full-f0b22fe71a-vol-src (container=972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1, destination=/data, driver=local, propagation=, read/write=true)
|
||||
2025-12-26T14:12:50.446943898+01:00 network connect 273bd12dbccf26e307a64aef5eecef0cb72c68114f8193cfb35919f5b256bdcb (container=972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1, name=bridge, type=bridge)
|
||||
2025-12-26T14:12:50.482329463+01:00 container start 972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1 (image=alpine:3.20, name=zen_northcutt)
|
||||
2025-12-26T14:12:50.643601381+01:00 network disconnect 273bd12dbccf26e307a64aef5eecef0cb72c68114f8193cfb35919f5b256bdcb (container=972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1, name=bridge, type=bridge)
|
||||
2025-12-26T14:12:50.665142404+01:00 volume unmount baudolo-e2e-files-full-f0b22fe71a-vol-src (container=972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1, driver=local)
|
||||
2025-12-26T14:12:50.686339473+01:00 container die 972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1 (execDuration=0, exitCode=0, image=alpine:3.20, name=zen_northcutt)
|
||||
2025-12-26T14:12:50.753769595+01:00 container destroy 972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1 (image=alpine:3.20, name=zen_northcutt)
|
||||
2025-12-26T14:12:51.102070909+01:00 volume destroy baudolo-e2e-files-full-f0b22fe71a-vol-src (driver=local)
|
||||
2025-12-26T14:12:51.141802271+01:00 volume create baudolo-e2e-files-nocopy-1a172b8088-vol-src (driver=local)
|
||||
2025-12-26T14:12:51.275100676+01:00 container create 6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334 (image=alpine:3.20, name=frosty_booth)
|
||||
2025-12-26T14:12:51.277163983+01:00 container attach 6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334 (image=alpine:3.20, name=frosty_booth)
|
||||
2025-12-26T14:12:51.295769885+01:00 volume mount baudolo-e2e-files-nocopy-1a172b8088-vol-src (container=6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334, destination=/data, driver=local, propagation=, read/write=true)
|
||||
2025-12-26T14:12:51.448766298+01:00 network connect 273bd12dbccf26e307a64aef5eecef0cb72c68114f8193cfb35919f5b256bdcb (container=6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334, name=bridge, type=bridge)
|
||||
2025-12-26T14:12:51.485884843+01:00 container start 6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334 (image=alpine:3.20, name=frosty_booth)
|
||||
2025-12-26T14:12:51.660953012+01:00 network disconnect 273bd12dbccf26e307a64aef5eecef0cb72c68114f8193cfb35919f5b256bdcb (container=6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334, name=bridge, type=bridge)
|
||||
2025-12-26T14:12:51.682098008+01:00 volume unmount baudolo-e2e-files-nocopy-1a172b8088-vol-src (container=6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334, driver=local)
|
||||
2025-12-26T14:12:51.703353364+01:00 container die 6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334 (execDuration=0, exitCode=0, image=alpine:3.20, name=frosty_booth)
|
||||
2025-12-26T14:12:51.763171429+01:00 container destroy 6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334 (image=alpine:3.20, name=frosty_booth)
|
||||
2025-12-26T14:12:52.049154745+01:00 volume destroy baudolo-e2e-files-nocopy-1a172b8088-vol-src (driver=local)
|
||||
2025-12-26T14:12:52.089068641+01:00 volume create baudolo-e2e-mariadb-full-0790ca5d41-mariadb-vol (driver=local)
|
||||
2025-12-26T14:13:13.530756972+01:00 image pull mariadb:11 (name=mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:13.887062438+01:00 container create c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:13.906656801+01:00 volume mount baudolo-e2e-mariadb-full-0790ca5d41-mariadb-vol (container=c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b, destination=/var/lib/mysql, driver=local, propagation=, read/write=true)
|
||||
2025-12-26T14:13:14.088244508+01:00 network connect 273bd12dbccf26e307a64aef5eecef0cb72c68114f8193cfb35919f5b256bdcb (container=c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b, name=bridge, type=bridge)
|
||||
2025-12-26T14:13:14.124633552+01:00 container start c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:14.136103009+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=25c368895719afe0d698bcf4a98509c797574c568e38ada08e00bf0f6664ce2e, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:14.136886083+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=25c368895719afe0d698bcf4a98509c797574c568e38ada08e00bf0f6664ce2e, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:14.192400683+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=25c368895719afe0d698bcf4a98509c797574c568e38ada08e00bf0f6664ce2e, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:15.203778795+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=6db98dd0a7a6739018bfae6e772472e1d24a70614bb990810327b94e7d69a304, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:15.204313114+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=6db98dd0a7a6739018bfae6e772472e1d24a70614bb990810327b94e7d69a304, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:15.298707655+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=6db98dd0a7a6739018bfae6e772472e1d24a70614bb990810327b94e7d69a304, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:16.308880522+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=dda886689926a5733b6d26abb50ccb9fac6c36cd94a1f2072dfce9819c3ae2f4, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:16.309586271+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=dda886689926a5733b6d26abb50ccb9fac6c36cd94a1f2072dfce9819c3ae2f4, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:16.398480757+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=dda886689926a5733b6d26abb50ccb9fac6c36cd94a1f2072dfce9819c3ae2f4, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:17.409340865+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=0bfa22af92cc123a356dd4d3aafb5fc50c458b9cec0ad748ceac46368acd0230, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:17.410031002+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=0bfa22af92cc123a356dd4d3aafb5fc50c458b9cec0ad748ceac46368acd0230, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:17.498639004+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=0bfa22af92cc123a356dd4d3aafb5fc50c458b9cec0ad748ceac46368acd0230, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:18.509268972+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=aa19a25f00ce6be43ade4aa09af6d2f89243bb626aa167d69fdf675beae727eb, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:18.510125815+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=aa19a25f00ce6be43ade4aa09af6d2f89243bb626aa167d69fdf675beae727eb, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:18.573652137+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=aa19a25f00ce6be43ade4aa09af6d2f89243bb626aa167d69fdf675beae727eb, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:19.585570745+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=edfebcae144b529f4466136c11213a95d52f9afa92c1fa75feedb42dee400105, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:19.586032588+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=edfebcae144b529f4466136c11213a95d52f9afa92c1fa75feedb42dee400105, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:19.647530562+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=edfebcae144b529f4466136c11213a95d52f9afa92c1fa75feedb42dee400105, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:20.659543769+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=4fe17b5868bdde99633ca6048f72583cd1e649d0fe3d1c4d89e4403119cf4895, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:20.660269360+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=4fe17b5868bdde99633ca6048f72583cd1e649d0fe3d1c4d89e4403119cf4895, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:20.738212597+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=4fe17b5868bdde99633ca6048f72583cd1e649d0fe3d1c4d89e4403119cf4895, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:21.749334016+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=f8179f3a975fe3e2b1824def3e1535a304f8e017e4b9554874f84899cbd43290, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:21.750064184+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=f8179f3a975fe3e2b1824def3e1535a304f8e017e4b9554874f84899cbd43290, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:21.821784307+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=f8179f3a975fe3e2b1824def3e1535a304f8e017e4b9554874f84899cbd43290, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:22.832155681+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=b0f1ff5b4b8b4f36b08306bb6f3c363dd550a1e15322ae995c834fa3451b1828, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:22.832953999+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=b0f1ff5b4b8b4f36b08306bb6f3c363dd550a1e15322ae995c834fa3451b1828, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:22.905555595+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=b0f1ff5b4b8b4f36b08306bb6f3c363dd550a1e15322ae995c834fa3451b1828, exitCode=0, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:22.915870140+01:00 container exec_create: sh -lc mariadb -uroot -prootpw -e "CREATE DATABASE appdb; CREATE TABLE appdb.t (id INT PRIMARY KEY, v VARCHAR(50)); INSERT INTO appdb.t VALUES (1,'ok');" c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=12daffe77867c29f0c7d14e64a9eda5706cd46ece5d5dec53cbb13c5e24e00ad, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:22.916786809+01:00 container exec_start: sh -lc mariadb -uroot -prootpw -e "CREATE DATABASE appdb; CREATE TABLE appdb.t (id INT PRIMARY KEY, v VARCHAR(50)); INSERT INTO appdb.t VALUES (1,'ok');" c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=12daffe77867c29f0c7d14e64a9eda5706cd46ece5d5dec53cbb13c5e24e00ad, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:22.987238735+01:00 container exec_die c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b (execID=12daffe77867c29f0c7d14e64a9eda5706cd46ece5d5dec53cbb13c5e24e00ad, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-full-0790ca5d41-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:23.022997879+01:00 volume create baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb-vol (driver=local)
|
||||
2025-12-26T14:13:23.211777653+01:00 container create 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:23.234973354+01:00 volume mount baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb-vol (container=0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f, destination=/var/lib/mysql, driver=local, propagation=, read/write=true)
|
||||
2025-12-26T14:13:23.434394198+01:00 network connect 273bd12dbccf26e307a64aef5eecef0cb72c68114f8193cfb35919f5b256bdcb (container=0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f, name=bridge, type=bridge)
|
||||
2025-12-26T14:13:23.483918185+01:00 container start 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:23.495865358+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=bce663783b34f1cd8ff5dc38563da7aced57a21c74f85101882ebe1cc1f4bc3d, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:23.496563367+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=bce663783b34f1cd8ff5dc38563da7aced57a21c74f85101882ebe1cc1f4bc3d, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:23.563402365+01:00 container exec_die 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=bce663783b34f1cd8ff5dc38563da7aced57a21c74f85101882ebe1cc1f4bc3d, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:24.575320221+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=9505e1a8c580f650758aebc0625a1b99d4ed46d84bf5a4628ed81503ebe9be07, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:24.575997988+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=9505e1a8c580f650758aebc0625a1b99d4ed46d84bf5a4628ed81503ebe9be07, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:24.655874626+01:00 container exec_die 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=9505e1a8c580f650758aebc0625a1b99d4ed46d84bf5a4628ed81503ebe9be07, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:25.665903138+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=73096c64d7deabeeefe0445b73f037617acd8fbdfbacd7dc98662c05135c3017, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:25.666433841+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=73096c64d7deabeeefe0445b73f037617acd8fbdfbacd7dc98662c05135c3017, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:25.737265107+01:00 container exec_die 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=73096c64d7deabeeefe0445b73f037617acd8fbdfbacd7dc98662c05135c3017, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:26.747973203+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=8bb42d9bb85effda41dba69913fe5cd5c97fb9cf35a0c31444ef44711691847a, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:26.748696717+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=8bb42d9bb85effda41dba69913fe5cd5c97fb9cf35a0c31444ef44711691847a, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:26.802608451+01:00 container exec_die 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=8bb42d9bb85effda41dba69913fe5cd5c97fb9cf35a0c31444ef44711691847a, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:27.813334836+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=e7c0e3b0f937b37addd50791d893f39dfded5b045debe2906820d7649338cd9e, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:27.814178343+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=e7c0e3b0f937b37addd50791d893f39dfded5b045debe2906820d7649338cd9e, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:27.899145142+01:00 container exec_die 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=e7c0e3b0f937b37addd50791d893f39dfded5b045debe2906820d7649338cd9e, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:28.909816912+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=0ff7490c0d56be23728fd1d089d52de46e6f811f9125e9033cd9d371c7ac17a3, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:28.910597354+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=0ff7490c0d56be23728fd1d089d52de46e6f811f9125e9033cd9d371c7ac17a3, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:28.975385649+01:00 container exec_die 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=0ff7490c0d56be23728fd1d089d52de46e6f811f9125e9033cd9d371c7ac17a3, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:29.985969275+01:00 container exec_create: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=95e541df0d7495e0e317e2f7032906c23be450e78e3544db6aa5bc14a1f5f6b7, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:29.986716701+01:00 container exec_start: sh -lc mariadb-admin -uroot -prootpw ping -h localhost 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=95e541df0d7495e0e317e2f7032906c23be450e78e3544db6aa5bc14a1f5f6b7, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:30.086972407+01:00 container exec_die 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=95e541df0d7495e0e317e2f7032906c23be450e78e3544db6aa5bc14a1f5f6b7, exitCode=0, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:30.096237769+01:00 container exec_create: sh -lc mariadb -uroot -prootpw -e "CREATE DATABASE appdb; CREATE TABLE appdb.t (id INT PRIMARY KEY, v VARCHAR(50)); INSERT INTO appdb.t VALUES (1,'ok');" 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=d94252b163f8ea17f17f901859837ecdc80327c05dfca36503b4fddfdf6b5823, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:30.096993155+01:00 container exec_start: sh -lc mariadb -uroot -prootpw -e "CREATE DATABASE appdb; CREATE TABLE appdb.t (id INT PRIMARY KEY, v VARCHAR(50)); INSERT INTO appdb.t VALUES (1,'ok');" 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=d94252b163f8ea17f17f901859837ecdc80327c05dfca36503b4fddfdf6b5823, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:30.164696413+01:00 container exec_die 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f (execID=d94252b163f8ea17f17f901859837ecdc80327c05dfca36503b4fddfdf6b5823, exitCode=1, image=mariadb:11, name=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb, org.opencontainers.image.authors=MariaDB Community, org.opencontainers.image.base.name=docker.io/library/ubuntu:noble, org.opencontainers.image.description=MariaDB Database for relational SQL, org.opencontainers.image.documentation=https://hub.docker.com/_/mariadb/, org.opencontainers.image.licenses=GPL-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.title=MariaDB Database, org.opencontainers.image.url=https://github.com/MariaDB/mariadb-docker, org.opencontainers.image.vendor=MariaDB Community, org.opencontainers.image.version=11.8.5)
|
||||
2025-12-26T14:13:30.195960077+01:00 volume create baudolo-e2e-postgres-full-e9784b8d4b-pg-vol (driver=local)
|
||||
2025-12-26T14:14:00.555389090+01:00 image pull postgres:16 (name=postgres)
|
||||
2025-12-26T14:14:00.854940131+01:00 container create 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:00.874215442+01:00 volume mount baudolo-e2e-postgres-full-e9784b8d4b-pg-vol (container=875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f, destination=/var/lib/postgresql/data, driver=local, propagation=, read/write=true)
|
||||
2025-12-26T14:14:01.057089403+01:00 network connect 273bd12dbccf26e307a64aef5eecef0cb72c68114f8193cfb35919f5b256bdcb (container=875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f, name=bridge, type=bridge)
|
||||
2025-12-26T14:14:01.090659145+01:00 container start 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:01.102872260+01:00 container exec_create: sh -lc pg_isready -U postgres -h localhost 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=440cd4f2d6c371430480b9cfed773ad5f398dc2e51c290ef5965d7053207f92f, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:01.103435051+01:00 container exec_start: sh -lc pg_isready -U postgres -h localhost 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=440cd4f2d6c371430480b9cfed773ad5f398dc2e51c290ef5965d7053207f92f, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:01.174777107+01:00 container exec_die 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=440cd4f2d6c371430480b9cfed773ad5f398dc2e51c290ef5965d7053207f92f, exitCode=2, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:02.184795425+01:00 container exec_create: sh -lc pg_isready -U postgres -h localhost 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=b6c2bf961069d25c7521efbceb97c68b582384d27e7657350a182d224aa27fd2, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:02.185507858+01:00 container exec_start: sh -lc pg_isready -U postgres -h localhost 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=b6c2bf961069d25c7521efbceb97c68b582384d27e7657350a182d224aa27fd2, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:02.235002365+01:00 container exec_die 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=b6c2bf961069d25c7521efbceb97c68b582384d27e7657350a182d224aa27fd2, exitCode=2, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:03.245410693+01:00 container exec_create: sh -lc pg_isready -U postgres -h localhost 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=6991766e6e74a1386b16f77dd3b83b075ae8bceddcaf1eaa5edb9f6210e51fb9, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:03.246196281+01:00 container exec_start: sh -lc pg_isready -U postgres -h localhost 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=6991766e6e74a1386b16f77dd3b83b075ae8bceddcaf1eaa5edb9f6210e51fb9, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:03.309711403+01:00 container exec_die 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=6991766e6e74a1386b16f77dd3b83b075ae8bceddcaf1eaa5edb9f6210e51fb9, exitCode=0, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:03.319880835+01:00 container exec_create: sh -lc psql -U postgres -d appdb -c "CREATE TABLE t (id int primary key, v text); INSERT INTO t VALUES (1,'ok');" 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=17ff3881b175cd2e7ffcd0dc1994bd2eb4b6a725871b6428743af4178bbc9c13, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:03.320618670+01:00 container exec_start: sh -lc psql -U postgres -d appdb -c "CREATE TABLE t (id int primary key, v text); INSERT INTO t VALUES (1,'ok');" 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=17ff3881b175cd2e7ffcd0dc1994bd2eb4b6a725871b6428743af4178bbc9c13, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:03.447110110+01:00 container exec_die 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f (execID=17ff3881b175cd2e7ffcd0dc1994bd2eb4b6a725871b6428743af4178bbc9c13, exitCode=0, image=postgres:16, name=baudolo-e2e-postgres-full-e9784b8d4b-pg)
|
||||
2025-12-26T14:14:03.758176891+01:00 volume create baudolo-e2e-postgres-nocopy-15d1e23327-pg-vol (driver=local)
|
||||
2025-12-26T14:14:03.920079355+01:00 container create 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:03.940018672+01:00 volume mount baudolo-e2e-postgres-nocopy-15d1e23327-pg-vol (container=18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702, destination=/var/lib/postgresql/data, driver=local, propagation=, read/write=true)
|
||||
2025-12-26T14:14:04.108324382+01:00 network connect 273bd12dbccf26e307a64aef5eecef0cb72c68114f8193cfb35919f5b256bdcb (container=18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702, name=bridge, type=bridge)
|
||||
2025-12-26T14:14:04.142411599+01:00 container start 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:04.154193197+01:00 container exec_create: sh -lc pg_isready -U postgres -h localhost 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=0d800e458aa1e871f9bb8b7f323593d38cd20b063113d79cf80f05892ddbd217, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:04.154831705+01:00 container exec_start: sh -lc pg_isready -U postgres -h localhost 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=0d800e458aa1e871f9bb8b7f323593d38cd20b063113d79cf80f05892ddbd217, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:04.234431100+01:00 container exec_die 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=0d800e458aa1e871f9bb8b7f323593d38cd20b063113d79cf80f05892ddbd217, exitCode=2, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:05.246575645+01:00 container exec_create: sh -lc pg_isready -U postgres -h localhost 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=d8176dffa8a2185e6a3ddfd134d9ba4cf6186bab4b36088df4bed3376c278ff4, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:05.247199022+01:00 container exec_start: sh -lc pg_isready -U postgres -h localhost 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=d8176dffa8a2185e6a3ddfd134d9ba4cf6186bab4b36088df4bed3376c278ff4, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:05.304014067+01:00 container exec_die 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=d8176dffa8a2185e6a3ddfd134d9ba4cf6186bab4b36088df4bed3376c278ff4, exitCode=2, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:06.315732563+01:00 container exec_create: sh -lc pg_isready -U postgres -h localhost 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=95d21955662aac0b324739e40cddfb071e5339a3f907b1e59312ccb4b3048122, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:06.316395085+01:00 container exec_start: sh -lc pg_isready -U postgres -h localhost 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=95d21955662aac0b324739e40cddfb071e5339a3f907b1e59312ccb4b3048122, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:06.391285156+01:00 container exec_die 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=95d21955662aac0b324739e40cddfb071e5339a3f907b1e59312ccb4b3048122, exitCode=0, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:06.401297303+01:00 container exec_create: sh -lc psql -U postgres -d appdb -c "CREATE TABLE t (id int primary key, v text); INSERT INTO t VALUES (1,'ok');" 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=b98057fde637245f1458cee7e5490afc371851c2d442304ba928231d77f32324, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:06.402103207+01:00 container exec_start: sh -lc psql -U postgres -d appdb -c "CREATE TABLE t (id int primary key, v text); INSERT INTO t VALUES (1,'ok');" 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=b98057fde637245f1458cee7e5490afc371851c2d442304ba928231d77f32324, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
2025-12-26T14:14:06.520047896+01:00 container exec_die 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702 (execID=b98057fde637245f1458cee7e5490afc371851c2d442304ba928231d77f32324, exitCode=0, image=postgres:16, name=baudolo-e2e-postgres-nocopy-15d1e23327-pg)
|
||||
@@ -1,13 +0,0 @@
|
||||
2025-12-26T18:00:43.105600680+01:00 image pull ghcr.io/kevinveenbirkenbach/alpine-rsync:latest (name=ghcr.io/kevinveenbirkenbach/alpine-rsync, org.opencontainers.image.created=2025-12-26T11:16:41.250Z, org.opencontainers.image.description=alpine image with rsync, org.opencontainers.image.licenses=AGPL-3.0, org.opencontainers.image.revision=44d48fb12106e82de8e0bb9c374f6a2c0c2b542c, org.opencontainers.image.source=https://github.com/kevinveenbirkenbach/alpine-rsync, org.opencontainers.image.title=alpine-rsync, org.opencontainers.image.url=https://github.com/kevinveenbirkenbach/alpine-rsync, org.opencontainers.image.version=main)
|
||||
2025-12-26T18:00:48.233210218+01:00 image pull alpine:3.20 (name=alpine)
|
||||
2025-12-26T18:00:52.495680501+01:00 image load sha256:0bc9b158f3e8edb2e5a131a12d51edba2b2954e1edc626c4ad989581fd8bb562 (name=sha256:0bc9b158f3e8edb2e5a131a12d51edba2b2954e1edc626c4ad989581fd8bb562)
|
||||
2025-12-26T18:00:53.087729138+01:00 volume create baudolo-e2e-files-full-45d7677d08-vol-src (driver=local)
|
||||
2025-12-26T18:00:53.236672233+01:00 container create debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45 (image=alpine:3.20, name=elated_snyder)
|
||||
2025-12-26T18:00:53.238392166+01:00 container attach debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45 (image=alpine:3.20, name=elated_snyder)
|
||||
2025-12-26T18:00:53.257319926+01:00 volume mount baudolo-e2e-files-full-45d7677d08-vol-src (container=debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45, destination=/data, driver=local, propagation=, read/write=true)
|
||||
2025-12-26T18:00:53.434210509+01:00 network connect 43f0f11bd2813c28b15d0f2b1d59875b2457c70aaef10ff7a309d57279bcf39e (container=debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45, name=bridge, type=bridge)
|
||||
2025-12-26T18:00:53.469302289+01:00 container start debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45 (image=alpine:3.20, name=elated_snyder)
|
||||
2025-12-26T18:00:53.625702613+01:00 network disconnect 43f0f11bd2813c28b15d0f2b1d59875b2457c70aaef10ff7a309d57279bcf39e (container=debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45, name=bridge, type=bridge)
|
||||
2025-12-26T18:00:53.636946550+01:00 volume unmount baudolo-e2e-files-full-45d7677d08-vol-src (container=debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45, driver=local)
|
||||
2025-12-26T18:00:53.657329988+01:00 container die debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45 (execDuration=0, exitCode=0, image=alpine:3.20, name=elated_snyder)
|
||||
2025-12-26T18:00:53.724058321+01:00 container destroy debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45 (image=alpine:3.20, name=elated_snyder)
|
||||
@@ -1,14 +0,0 @@
|
||||
2025-12-26T18:04:57.729650330+01:00 image pull ghcr.io/kevinveenbirkenbach/alpine-rsync:latest (name=ghcr.io/kevinveenbirkenbach/alpine-rsync, org.opencontainers.image.created=2025-12-26T11:16:41.250Z, org.opencontainers.image.description=alpine image with rsync, org.opencontainers.image.licenses=AGPL-3.0, org.opencontainers.image.revision=44d48fb12106e82de8e0bb9c374f6a2c0c2b542c, org.opencontainers.image.source=https://github.com/kevinveenbirkenbach/alpine-rsync, org.opencontainers.image.title=alpine-rsync, org.opencontainers.image.url=https://github.com/kevinveenbirkenbach/alpine-rsync, org.opencontainers.image.version=main)
|
||||
2025-12-26T18:05:02.774379357+01:00 image pull alpine:3.20 (name=alpine)
|
||||
2025-12-26T18:05:07.091956837+01:00 image load sha256:84e1ce4363e7f6880bbc55dce81bd8bc3d0cd35db78f6b625f6693eb28f26d46 (name=sha256:84e1ce4363e7f6880bbc55dce81bd8bc3d0cd35db78f6b625f6693eb28f26d46)
|
||||
2025-12-26T18:05:07.706443392+01:00 volume create baudolo-e2e-files-full-468c9a54be-vol-src (driver=local)
|
||||
2025-12-26T18:05:07.876060673+01:00 container create f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f (image=alpine:3.20, name=eloquent_solomon)
|
||||
2025-12-26T18:05:07.878097650+01:00 container attach f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f (image=alpine:3.20, name=eloquent_solomon)
|
||||
2025-12-26T18:05:07.897098146+01:00 volume mount baudolo-e2e-files-full-468c9a54be-vol-src (container=f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f, destination=/data, driver=local, propagation=, read/write=true)
|
||||
2025-12-26T18:05:08.083750320+01:00 network connect f9303d265b7c4eadd53194f11a7203398a0fb64cacedec113668cea7448632a3 (container=f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f, name=bridge, type=bridge)
|
||||
2025-12-26T18:05:08.117011831+01:00 container start f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f (image=alpine:3.20, name=eloquent_solomon)
|
||||
2025-12-26T18:05:08.286072714+01:00 network disconnect f9303d265b7c4eadd53194f11a7203398a0fb64cacedec113668cea7448632a3 (container=f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f, name=bridge, type=bridge)
|
||||
2025-12-26T18:05:08.306579097+01:00 volume unmount baudolo-e2e-files-full-468c9a54be-vol-src (container=f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f, driver=local)
|
||||
2025-12-26T18:05:08.326825706+01:00 container die f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f (execDuration=0, exitCode=0, image=alpine:3.20, name=eloquent_solomon)
|
||||
2025-12-26T18:05:08.391069360+01:00 container destroy f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f (image=alpine:3.20, name=eloquent_solomon)
|
||||
2025-12-26T18:05:08.792526442+01:00 volume destroy baudolo-e2e-files-full-468c9a54be-vol-src (driver=local)
|
||||
@@ -1,134 +0,0 @@
|
||||
cat: can't open '/proc/net/ip6_tables_names': No such file or directory
|
||||
cat: can't open '/proc/net/arp_tables_names': No such file or directory
|
||||
iptables v1.8.11 (nf_tables)
|
||||
time="2025-12-26T13:12:35.607239802Z" level=info msg="Starting up"
|
||||
time="2025-12-26T13:12:35.607448321Z" level=warning msg="Binding to IP address without --tlsverify is insecure and gives root access on this machine to everyone who has access to your network." host="tcp://0.0.0.0:2375"
|
||||
time="2025-12-26T13:12:35.607454883Z" level=warning msg="Binding to an IP address, even on localhost, can also give access to scripts run in a browser. Be safe out there!" host="tcp://0.0.0.0:2375"
|
||||
time="2025-12-26T13:12:35.607457761Z" level=warning msg="[DEPRECATION NOTICE] In future versions this will be a hard failure preventing the daemon from starting! Learn more at: https://docs.docker.com/go/api-security/" host="tcp://0.0.0.0:2375"
|
||||
time="2025-12-26T13:12:36.607996436Z" level=info msg="containerd not running, starting managed containerd"
|
||||
time="2025-12-26T13:12:36.608758080Z" level=info msg="started new containerd process" address=/var/run/docker/containerd/containerd.sock module=libcontainerd pid=38
|
||||
time="2025-12-26T13:12:36.617804077Z" level=info msg="starting containerd" revision=1c4457e00facac03ce1d75f7b6777a7a851e5c41 version=v2.2.0
|
||||
time="2025-12-26T13:12:36.622418653Z" level=warning msg="Configuration migrated from version 2, use `containerd config migrate` to avoid migration" t="2.104µs"
|
||||
time="2025-12-26T13:12:36.622438034Z" level=info msg="loading plugin" id=io.containerd.content.v1.content type=io.containerd.content.v1
|
||||
time="2025-12-26T13:12:36.622465608Z" level=info msg="loading plugin" id=io.containerd.image-verifier.v1.bindir type=io.containerd.image-verifier.v1
|
||||
time="2025-12-26T13:12:36.622474615Z" level=info msg="loading plugin" id=io.containerd.internal.v1.opt type=io.containerd.internal.v1
|
||||
time="2025-12-26T13:12:36.622633460Z" level=info msg="loading plugin" id=io.containerd.warning.v1.deprecations type=io.containerd.warning.v1
|
||||
time="2025-12-26T13:12:36.622646333Z" level=info msg="loading plugin" id=io.containerd.mount-handler.v1.erofs type=io.containerd.mount-handler.v1
|
||||
time="2025-12-26T13:12:36.622653404Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.622691099Z" level=info msg="skip loading plugin" error="no scratch file generator: skip plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.622699155Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.622720446Z" level=info msg="skip loading plugin" error="devmapper not configured: skip plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.622726589Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.erofs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.622839203Z" level=info msg="skip loading plugin" error="EROFS unsupported, please `modprobe erofs`: skip plugin" id=io.containerd.snapshotter.v1.erofs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.622850172Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.native type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.622903679Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.overlayfs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.623020836Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.zfs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.623045341Z" level=info msg="skip loading plugin" error="lstat /var/lib/docker/containerd/daemon/io.containerd.snapshotter.v1.zfs: no such file or directory: skip plugin" id=io.containerd.snapshotter.v1.zfs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T13:12:36.623053379Z" level=info msg="loading plugin" id=io.containerd.event.v1.exchange type=io.containerd.event.v1
|
||||
time="2025-12-26T13:12:36.623071367Z" level=info msg="loading plugin" id=io.containerd.monitor.task.v1.cgroups type=io.containerd.monitor.task.v1
|
||||
time="2025-12-26T13:12:36.623184820Z" level=info msg="loading plugin" id=io.containerd.metadata.v1.bolt type=io.containerd.metadata.v1
|
||||
time="2025-12-26T13:12:36.623223325Z" level=info msg="metadata content store policy set" policy=shared
|
||||
time="2025-12-26T13:12:36.669034596Z" level=info msg="loading plugin" id=io.containerd.gc.v1.scheduler type=io.containerd.gc.v1
|
||||
time="2025-12-26T13:12:36.669104777Z" level=info msg="loading plugin" id=io.containerd.nri.v1.nri type=io.containerd.nri.v1
|
||||
time="2025-12-26T13:12:36.669134319Z" level=info msg="built-in NRI default validator is disabled"
|
||||
time="2025-12-26T13:12:36.669139961Z" level=info msg="runtime interface created"
|
||||
time="2025-12-26T13:12:36.669143234Z" level=info msg="created NRI interface"
|
||||
time="2025-12-26T13:12:36.669149993Z" level=info msg="loading plugin" id=io.containerd.differ.v1.erofs type=io.containerd.differ.v1
|
||||
time="2025-12-26T13:12:36.669265965Z" level=info msg="skip loading plugin" error="failed to check mkfs.erofs availability: failed to run mkfs.erofs --help: exec: \"mkfs.erofs\": executable file not found in $PATH: skip plugin" id=io.containerd.differ.v1.erofs type=io.containerd.differ.v1
|
||||
time="2025-12-26T13:12:36.669276775Z" level=info msg="loading plugin" id=io.containerd.differ.v1.walking type=io.containerd.differ.v1
|
||||
time="2025-12-26T13:12:36.669286109Z" level=info msg="loading plugin" id=io.containerd.lease.v1.manager type=io.containerd.lease.v1
|
||||
time="2025-12-26T13:12:36.669293623Z" level=info msg="loading plugin" id=io.containerd.mount-manager.v1.bolt type=io.containerd.mount-manager.v1
|
||||
time="2025-12-26T13:12:36.680202251Z" level=info msg="loading plugin" id=io.containerd.service.v1.containers-service type=io.containerd.service.v1
|
||||
time="2025-12-26T13:12:36.680236484Z" level=info msg="loading plugin" id=io.containerd.service.v1.content-service type=io.containerd.service.v1
|
||||
time="2025-12-26T13:12:36.680245733Z" level=info msg="loading plugin" id=io.containerd.service.v1.diff-service type=io.containerd.service.v1
|
||||
time="2025-12-26T13:12:36.680257639Z" level=info msg="loading plugin" id=io.containerd.service.v1.images-service type=io.containerd.service.v1
|
||||
time="2025-12-26T13:12:36.680272631Z" level=info msg="loading plugin" id=io.containerd.service.v1.introspection-service type=io.containerd.service.v1
|
||||
time="2025-12-26T13:12:36.680281754Z" level=info msg="loading plugin" id=io.containerd.service.v1.namespaces-service type=io.containerd.service.v1
|
||||
time="2025-12-26T13:12:36.680289097Z" level=info msg="loading plugin" id=io.containerd.service.v1.snapshots-service type=io.containerd.service.v1
|
||||
time="2025-12-26T13:12:36.680296494Z" level=info msg="loading plugin" id=io.containerd.shim.v1.manager type=io.containerd.shim.v1
|
||||
time="2025-12-26T13:12:36.680304796Z" level=info msg="loading plugin" id=io.containerd.runtime.v2.task type=io.containerd.runtime.v2
|
||||
time="2025-12-26T13:12:36.680492159Z" level=info msg="loading plugin" id=io.containerd.service.v1.tasks-service type=io.containerd.service.v1
|
||||
time="2025-12-26T13:12:36.680510697Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.containers type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.680519856Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.content type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.680527108Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.diff type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.680538702Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.events type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.680545781Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.images type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.680553487Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.introspection type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.680560942Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.leases type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.680569212Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.mounts type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.680576118Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.namespaces type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.680584646Z" level=info msg="loading plugin" id=io.containerd.sandbox.store.v1.local type=io.containerd.sandbox.store.v1
|
||||
time="2025-12-26T13:12:36.680591336Z" level=info msg="loading plugin" id=io.containerd.transfer.v1.local type=io.containerd.transfer.v1
|
||||
time="2025-12-26T13:12:36.680616357Z" level=info msg="loading plugin" id=io.containerd.cri.v1.images type=io.containerd.cri.v1
|
||||
time="2025-12-26T13:12:36.680648761Z" level=info msg="Get image filesystem path \"/var/lib/docker/containerd/daemon/io.containerd.snapshotter.v1.overlayfs\" for snapshotter \"overlayfs\""
|
||||
time="2025-12-26T13:12:36.680657983Z" level=info msg="Start snapshots syncer"
|
||||
time="2025-12-26T13:12:36.680676626Z" level=info msg="loading plugin" id=io.containerd.cri.v1.runtime type=io.containerd.cri.v1
|
||||
time="2025-12-26T13:12:36.680840549Z" level=info msg="starting cri plugin" config="{\"containerd\":{\"defaultRuntimeName\":\"runc\",\"runtimes\":{\"runc\":{\"runtimeType\":\"io.containerd.runc.v2\",\"runtimePath\":\"\",\"PodAnnotations\":null,\"ContainerAnnotations\":null,\"options\":{\"BinaryName\":\"\",\"CriuImagePath\":\"\",\"CriuWorkPath\":\"\",\"IoGid\":0,\"IoUid\":0,\"NoNewKeyring\":false,\"Root\":\"\",\"ShimCgroup\":\"\",\"SystemdCgroup\":false},\"privileged_without_host_devices\":false,\"privileged_without_host_devices_all_devices_allowed\":false,\"cgroupWritable\":false,\"baseRuntimeSpec\":\"\",\"cniConfDir\":\"\",\"cniMaxConfNum\":0,\"snapshotter\":\"\",\"sandboxer\":\"podsandbox\",\"io_type\":\"\"}},\"ignoreBlockIONotEnabledErrors\":false,\"ignoreRdtNotEnabledErrors\":false},\"cni\":{\"binDir\":\"\",\"binDirs\":[\"/opt/cni/bin\"],\"confDir\":\"/etc/cni/net.d\",\"maxConfNum\":1,\"setupSerially\":false,\"confTemplate\":\"\",\"ipPref\":\"\",\"useInternalLoopback\":false},\"enableSelinux\":false,\"selinuxCategoryRange\":1024,\"maxContainerLogLineSize\":16384,\"disableApparmor\":false,\"restrictOOMScoreAdj\":false,\"disableProcMount\":false,\"unsetSeccompProfile\":\"\",\"tolerateMissingHugetlbController\":true,\"disableHugetlbController\":true,\"device_ownership_from_security_context\":false,\"ignoreImageDefinedVolumes\":false,\"netnsMountsUnderStateDir\":false,\"enableUnprivilegedPorts\":true,\"enableUnprivilegedICMP\":true,\"enableCDI\":true,\"cdiSpecDirs\":[\"/etc/cdi\",\"/var/run/cdi\"],\"drainExecSyncIOTimeout\":\"0s\",\"ignoreDeprecationWarnings\":null,\"containerdRootDir\":\"/var/lib/docker/containerd/daemon\",\"containerdEndpoint\":\"/var/run/docker/containerd/containerd.sock\",\"rootDir\":\"/var/lib/docker/containerd/daemon/io.containerd.grpc.v1.cri\",\"stateDir\":\"/var/run/docker/containerd/daemon/io.containerd.grpc.v1.cri\"}"
|
||||
time="2025-12-26T13:12:36.680887507Z" level=info msg="loading plugin" id=io.containerd.podsandbox.controller.v1.podsandbox type=io.containerd.podsandbox.controller.v1
|
||||
time="2025-12-26T13:12:36.680919435Z" level=info msg="loading plugin" id=io.containerd.sandbox.controller.v1.shim type=io.containerd.sandbox.controller.v1
|
||||
time="2025-12-26T13:12:36.681022329Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandbox-controllers type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.681039655Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandboxes type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.681047783Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.snapshots type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.681063337Z" level=info msg="loading plugin" id=io.containerd.streaming.v1.manager type=io.containerd.streaming.v1
|
||||
time="2025-12-26T13:12:36.681071624Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.streaming type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.681079067Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.tasks type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.681086621Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.transfer type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.681096033Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.version type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.681103407Z" level=info msg="loading plugin" id=io.containerd.monitor.container.v1.restart type=io.containerd.monitor.container.v1
|
||||
time="2025-12-26T13:12:36.681128288Z" level=info msg="loading plugin" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
|
||||
time="2025-12-26T13:12:36.681139875Z" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
|
||||
time="2025-12-26T13:12:36.681146627Z" level=info msg="loading plugin" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
|
||||
time="2025-12-26T13:12:36.681153149Z" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
|
||||
time="2025-12-26T13:12:36.681159434Z" level=info msg="loading plugin" id=io.containerd.ttrpc.v1.otelttrpc type=io.containerd.ttrpc.v1
|
||||
time="2025-12-26T13:12:36.681167042Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.healthcheck type=io.containerd.grpc.v1
|
||||
time="2025-12-26T13:12:36.681336396Z" level=info msg=serving... address=/var/run/docker/containerd/containerd-debug.sock
|
||||
time="2025-12-26T13:12:36.681387990Z" level=info msg=serving... address=/var/run/docker/containerd/containerd.sock.ttrpc
|
||||
time="2025-12-26T13:12:36.681425600Z" level=info msg=serving... address=/var/run/docker/containerd/containerd.sock
|
||||
time="2025-12-26T13:12:36.681440829Z" level=info msg="containerd successfully booted in 0.064165s"
|
||||
time="2025-12-26T13:12:36.684626150Z" level=info msg="OTEL tracing is not configured, using no-op tracer provider"
|
||||
time="2025-12-26T13:12:36.684700068Z" level=info msg="CDI directory does not exist, skipping: failed to monitor for changes: no such file or directory" dir=/var/run/cdi
|
||||
time="2025-12-26T13:12:36.684708372Z" level=info msg="CDI directory does not exist, skipping: failed to monitor for changes: no such file or directory" dir=/etc/cdi
|
||||
time="2025-12-26T13:12:36.690649847Z" level=info msg="Creating a containerd client" address=/var/run/docker/containerd/containerd.sock timeout=1m0s
|
||||
time="2025-12-26T13:12:36.744755094Z" level=info msg="Loading containers: start."
|
||||
time="2025-12-26T13:12:36.744783313Z" level=info msg="Starting daemon with containerd snapshotter integration enabled"
|
||||
time="2025-12-26T13:12:36.746236880Z" level=info msg="Restoring containers: start."
|
||||
time="2025-12-26T13:12:36.757742895Z" level=info msg="Deleting nftables IPv4 rules" error="exec: \"nft\": executable file not found in $PATH"
|
||||
time="2025-12-26T13:12:36.757766237Z" level=info msg="Deleting nftables IPv6 rules" error="exec: \"nft\": executable file not found in $PATH"
|
||||
time="2025-12-26T13:12:36.947985615Z" level=info msg="Loading containers: done."
|
||||
time="2025-12-26T13:12:36.952727549Z" level=warning msg="[DEPRECATION NOTICE]: API is accessible on http://0.0.0.0:2375 without encryption.\n Access to the remote API is equivalent to root access on the host. Refer\n to the 'Docker daemon attack surface' section in the documentation for\n more information: https://docs.docker.com/go/attack-surface/\nIn future versions this will be a hard failure preventing the daemon from starting! Learn more at: https://docs.docker.com/go/api-security/"
|
||||
time="2025-12-26T13:12:36.952745839Z" level=info msg="Docker daemon" commit=fbf3ed2 containerd-snapshotter=true storage-driver=overlayfs version=29.1.3
|
||||
time="2025-12-26T13:12:36.952799028Z" level=info msg="Initializing buildkit"
|
||||
time="2025-12-26T13:12:37.022912976Z" level=info msg="Completed buildkit initialization"
|
||||
time="2025-12-26T13:12:37.025103241Z" level=info msg="Daemon has completed initialization"
|
||||
time="2025-12-26T13:12:37.025175858Z" level=info msg="API listen on /var/run/docker.sock"
|
||||
time="2025-12-26T13:12:37.025188808Z" level=info msg="API listen on [::]:2375"
|
||||
time="2025-12-26T13:12:41.193081246Z" level=info msg="image pulled" digest="sha256:049c6ec3dad73daa72a97d8031862bb66cd07ae65db661c82b9a739cdc3fc294" remote="ghcr.io/kevinveenbirkenbach/alpine-rsync:latest"
|
||||
time="2025-12-26T13:12:45.126313735Z" level=info msg="image pulled" digest="sha256:765942a4039992336de8dd5db680586e1a206607dd06170ff0a37267a9e01958" remote="docker.io/library/alpine:3.20"
|
||||
time="2025-12-26T13:12:50.299948198Z" level=info msg="connecting to shim 972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1" address="unix:///run/containerd/s/fc3ad1eeddab1ec96fdb9926086343c235f3e670360186e882cc05677fe69f38" namespace=moby protocol=ttrpc version=3
|
||||
time="2025-12-26T13:12:50.412014169Z" level=info msg="No non-localhost DNS nameservers are left in resolv.conf. Using default external servers"
|
||||
time="2025-12-26T13:12:50.430354220Z" level=info msg="sbJoin: gwep4 ''->'7d5c918912ea', gwep6 ''->''" eid=7d5c918912ea ep=zen_northcutt net=bridge nid=273bd12dbccf
|
||||
time="2025-12-26T13:12:50.488045137Z" level=info msg="ignoring event" container=972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1 module=libcontainerd namespace=moby topic=/tasks/delete type="*events.TaskDelete"
|
||||
time="2025-12-26T13:12:50.488095870Z" level=info msg="shim disconnected" id=972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1 namespace=moby
|
||||
time="2025-12-26T13:12:50.488117693Z" level=info msg="cleaning up after shim disconnected" id=972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1 namespace=moby
|
||||
time="2025-12-26T13:12:50.488122051Z" level=info msg="cleaning up dead shim" id=972154cc8d0901f81a054f0e5e3ddc210b2b0708d9676d0f3ec509318798c6a1 namespace=moby
|
||||
time="2025-12-26T13:12:51.324794894Z" level=info msg="connecting to shim 6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334" address="unix:///run/containerd/s/90adb363b22d54ffc63ff01f8efbb54e3c6b6211b7d5f79e0a196bd74836f1f1" namespace=moby protocol=ttrpc version=3
|
||||
time="2025-12-26T13:12:51.415903351Z" level=info msg="No non-localhost DNS nameservers are left in resolv.conf. Using default external servers"
|
||||
time="2025-12-26T13:12:51.432443828Z" level=info msg="sbJoin: gwep4 ''->'bc84305bbcdd', gwep6 ''->''" eid=bc84305bbcdd ep=frosty_booth net=bridge nid=273bd12dbccf
|
||||
time="2025-12-26T13:12:51.491912087Z" level=info msg="shim disconnected" id=6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334 namespace=moby
|
||||
time="2025-12-26T13:12:51.491933510Z" level=info msg="cleaning up after shim disconnected" id=6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334 namespace=moby
|
||||
time="2025-12-26T13:12:51.491939839Z" level=info msg="cleaning up dead shim" id=6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334 namespace=moby
|
||||
time="2025-12-26T13:12:51.492007924Z" level=info msg="ignoring event" container=6603444bf2ed97d313096c400af3d5c8e925db35486e3ae3964592de58753334 module=libcontainerd namespace=moby topic=/tasks/delete type="*events.TaskDelete"
|
||||
time="2025-12-26T13:13:13.522436498Z" level=info msg="image pulled" digest="sha256:1cac8492bd78b1ec693238dc600be173397efd7b55eabc725abc281dc855b482" remote="docker.io/library/mariadb:11"
|
||||
time="2025-12-26T13:13:13.949236937Z" level=info msg="connecting to shim c5ac9491eae276c22025f00be6c4fbfae3eb0d5a93169abac4f33361504c037b" address="unix:///run/containerd/s/9630f7225dc2a2122064ccc65f2f0087cdfb4109efa46c6bcfd990ede6ea19ce" namespace=moby protocol=ttrpc version=3
|
||||
time="2025-12-26T13:13:14.054875143Z" level=info msg="No non-localhost DNS nameservers are left in resolv.conf. Using default external servers"
|
||||
time="2025-12-26T13:13:14.071547528Z" level=info msg="sbJoin: gwep4 ''->'597a400c9b0e', gwep6 ''->''" eid=597a400c9b0e ep=baudolo-e2e-mariadb-full-0790ca5d41-mariadb net=bridge nid=273bd12dbccf
|
||||
time="2025-12-26T13:13:23.286724224Z" level=info msg="connecting to shim 0b87b8fdc76bf726013d2d1d6cca85d8e9cb5b7a958367a2b793cbcbec5a9d2f" address="unix:///run/containerd/s/f8d1041b5d1ed7817faf358db9bb1b596840a75c0604a14f8b36b3677e3d9bf2" namespace=moby protocol=ttrpc version=3
|
||||
time="2025-12-26T13:13:23.388684715Z" level=info msg="No non-localhost DNS nameservers are left in resolv.conf. Using default external servers"
|
||||
time="2025-12-26T13:13:23.411947042Z" level=info msg="sbJoin: gwep4 ''->'8253bf043b58', gwep6 ''->''" eid=8253bf043b58 ep=baudolo-e2e-mariadb-nocopy-fbea8e4fa3-mariadb net=bridge nid=273bd12dbccf
|
||||
time="2025-12-26T13:14:00.542854374Z" level=info msg="image pulled" digest="sha256:d4c3314b2dd74ff23cd6cd07e4d7e737cb6ef791c22a7cbd744cfbfb4815df72" remote="docker.io/library/postgres:16"
|
||||
time="2025-12-26T13:14:00.901578914Z" level=info msg="connecting to shim 875008fe1e9e58e18eed4d14e13feeba1424ebcace789a038abc308df88b8a3f" address="unix:///run/containerd/s/afbe754b0641b7b82689d5d935c09c3911c999580a8cd466eef5cd345d218376" namespace=moby protocol=ttrpc version=3
|
||||
time="2025-12-26T13:14:01.016704015Z" level=info msg="No non-localhost DNS nameservers are left in resolv.conf. Using default external servers"
|
||||
time="2025-12-26T13:14:01.040324806Z" level=info msg="sbJoin: gwep4 ''->'5a2f1953c3f0', gwep6 ''->''" eid=5a2f1953c3f0 ep=baudolo-e2e-postgres-full-e9784b8d4b-pg net=bridge nid=273bd12dbccf
|
||||
time="2025-12-26T13:14:03.968249238Z" level=info msg="connecting to shim 18ef5793cfc5ea0e4c4d95344b5c3589d9e679c120b9ff142a59e9de880d5702" address="unix:///run/containerd/s/a03b9519bbae0d99bb4256cfda3177c795e58ac0c5f85c23f75a9b029bbf9fa5" namespace=moby protocol=ttrpc version=3
|
||||
time="2025-12-26T13:14:04.076486784Z" level=info msg="No non-localhost DNS nameservers are left in resolv.conf. Using default external servers"
|
||||
time="2025-12-26T13:14:04.092748669Z" level=info msg="sbJoin: gwep4 ''->'8b1d894976ab', gwep6 ''->''" eid=8b1d894976ab ep=baudolo-e2e-postgres-nocopy-15d1e23327-pg net=bridge nid=273bd12dbccf
|
||||
@@ -1,113 +0,0 @@
|
||||
cat: can't open '/proc/net/ip6_tables_names': No such file or directory
|
||||
cat: can't open '/proc/net/arp_tables_names': No such file or directory
|
||||
iptables v1.8.11 (nf_tables)
|
||||
time="2025-12-26T17:00:30.670240834Z" level=info msg="Starting up"
|
||||
time="2025-12-26T17:00:30.670483375Z" level=warning msg="Binding to IP address without --tlsverify is insecure and gives root access on this machine to everyone who has access to your network." host="tcp://0.0.0.0:2375"
|
||||
time="2025-12-26T17:00:30.670490199Z" level=warning msg="Binding to an IP address, even on localhost, can also give access to scripts run in a browser. Be safe out there!" host="tcp://0.0.0.0:2375"
|
||||
time="2025-12-26T17:00:30.670493463Z" level=warning msg="[DEPRECATION NOTICE] In future versions this will be a hard failure preventing the daemon from starting! Learn more at: https://docs.docker.com/go/api-security/" host="tcp://0.0.0.0:2375"
|
||||
time="2025-12-26T17:00:31.671142252Z" level=info msg="containerd not running, starting managed containerd"
|
||||
time="2025-12-26T17:00:31.671816629Z" level=info msg="started new containerd process" address=/var/run/docker/containerd/containerd.sock module=libcontainerd pid=38
|
||||
time="2025-12-26T17:00:31.679174629Z" level=info msg="starting containerd" revision=1c4457e00facac03ce1d75f7b6777a7a851e5c41 version=v2.2.0
|
||||
time="2025-12-26T17:00:31.686162725Z" level=warning msg="Configuration migrated from version 2, use `containerd config migrate` to avoid migration" t="3.13µs"
|
||||
time="2025-12-26T17:00:31.686190065Z" level=info msg="loading plugin" id=io.containerd.content.v1.content type=io.containerd.content.v1
|
||||
time="2025-12-26T17:00:31.686235899Z" level=info msg="loading plugin" id=io.containerd.image-verifier.v1.bindir type=io.containerd.image-verifier.v1
|
||||
time="2025-12-26T17:00:31.686250875Z" level=info msg="loading plugin" id=io.containerd.internal.v1.opt type=io.containerd.internal.v1
|
||||
time="2025-12-26T17:00:31.686450438Z" level=info msg="loading plugin" id=io.containerd.warning.v1.deprecations type=io.containerd.warning.v1
|
||||
time="2025-12-26T17:00:31.686467644Z" level=info msg="loading plugin" id=io.containerd.mount-handler.v1.erofs type=io.containerd.mount-handler.v1
|
||||
time="2025-12-26T17:00:31.686479124Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686532605Z" level=info msg="skip loading plugin" error="no scratch file generator: skip plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686544650Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686555001Z" level=info msg="skip loading plugin" error="devmapper not configured: skip plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686562710Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.erofs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686697989Z" level=info msg="skip loading plugin" error="EROFS unsupported, please `modprobe erofs`: skip plugin" id=io.containerd.snapshotter.v1.erofs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686709462Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.native type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686769573Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.overlayfs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686909801Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.zfs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686945246Z" level=info msg="skip loading plugin" error="lstat /var/lib/docker/containerd/daemon/io.containerd.snapshotter.v1.zfs: no such file or directory: skip plugin" id=io.containerd.snapshotter.v1.zfs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:00:31.686956789Z" level=info msg="loading plugin" id=io.containerd.event.v1.exchange type=io.containerd.event.v1
|
||||
time="2025-12-26T17:00:31.686981832Z" level=info msg="loading plugin" id=io.containerd.monitor.task.v1.cgroups type=io.containerd.monitor.task.v1
|
||||
time="2025-12-26T17:00:31.687563537Z" level=info msg="loading plugin" id=io.containerd.metadata.v1.bolt type=io.containerd.metadata.v1
|
||||
time="2025-12-26T17:00:31.687705806Z" level=info msg="metadata content store policy set" policy=shared
|
||||
time="2025-12-26T17:00:31.720537850Z" level=info msg="loading plugin" id=io.containerd.gc.v1.scheduler type=io.containerd.gc.v1
|
||||
time="2025-12-26T17:00:31.720581316Z" level=info msg="loading plugin" id=io.containerd.nri.v1.nri type=io.containerd.nri.v1
|
||||
time="2025-12-26T17:00:31.720628516Z" level=info msg="built-in NRI default validator is disabled"
|
||||
time="2025-12-26T17:00:31.720631468Z" level=info msg="runtime interface created"
|
||||
time="2025-12-26T17:00:31.720633477Z" level=info msg="created NRI interface"
|
||||
time="2025-12-26T17:00:31.720637569Z" level=info msg="loading plugin" id=io.containerd.differ.v1.erofs type=io.containerd.differ.v1
|
||||
time="2025-12-26T17:00:31.720688284Z" level=info msg="skip loading plugin" error="failed to check mkfs.erofs availability: failed to run mkfs.erofs --help: exec: \"mkfs.erofs\": executable file not found in $PATH: skip plugin" id=io.containerd.differ.v1.erofs type=io.containerd.differ.v1
|
||||
time="2025-12-26T17:00:31.720694077Z" level=info msg="loading plugin" id=io.containerd.differ.v1.walking type=io.containerd.differ.v1
|
||||
time="2025-12-26T17:00:31.720700483Z" level=info msg="loading plugin" id=io.containerd.lease.v1.manager type=io.containerd.lease.v1
|
||||
time="2025-12-26T17:00:31.720705680Z" level=info msg="loading plugin" id=io.containerd.mount-manager.v1.bolt type=io.containerd.mount-manager.v1
|
||||
time="2025-12-26T17:00:31.730341558Z" level=info msg="loading plugin" id=io.containerd.service.v1.containers-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:00:31.730376426Z" level=info msg="loading plugin" id=io.containerd.service.v1.content-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:00:31.730387303Z" level=info msg="loading plugin" id=io.containerd.service.v1.diff-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:00:31.730398550Z" level=info msg="loading plugin" id=io.containerd.service.v1.images-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:00:31.730409225Z" level=info msg="loading plugin" id=io.containerd.service.v1.introspection-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:00:31.730418716Z" level=info msg="loading plugin" id=io.containerd.service.v1.namespaces-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:00:31.730426969Z" level=info msg="loading plugin" id=io.containerd.service.v1.snapshots-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:00:31.730439790Z" level=info msg="loading plugin" id=io.containerd.shim.v1.manager type=io.containerd.shim.v1
|
||||
time="2025-12-26T17:00:31.730453240Z" level=info msg="loading plugin" id=io.containerd.runtime.v2.task type=io.containerd.runtime.v2
|
||||
time="2025-12-26T17:00:31.730595974Z" level=info msg="loading plugin" id=io.containerd.service.v1.tasks-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:00:31.730613653Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.containers type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.730624484Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.content type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.730632974Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.diff type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.730641870Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.events type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.730649677Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.images type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.730658962Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.introspection type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.730668771Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.leases type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.730678507Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.mounts type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.730686143Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.namespaces type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.730706862Z" level=info msg="loading plugin" id=io.containerd.sandbox.store.v1.local type=io.containerd.sandbox.store.v1
|
||||
time="2025-12-26T17:00:31.730722989Z" level=info msg="loading plugin" id=io.containerd.transfer.v1.local type=io.containerd.transfer.v1
|
||||
time="2025-12-26T17:00:31.730751288Z" level=info msg="loading plugin" id=io.containerd.cri.v1.images type=io.containerd.cri.v1
|
||||
time="2025-12-26T17:00:31.730857584Z" level=info msg="Get image filesystem path \"/var/lib/docker/containerd/daemon/io.containerd.snapshotter.v1.overlayfs\" for snapshotter \"overlayfs\""
|
||||
time="2025-12-26T17:00:31.730877944Z" level=info msg="Start snapshots syncer"
|
||||
time="2025-12-26T17:00:31.730894454Z" level=info msg="loading plugin" id=io.containerd.cri.v1.runtime type=io.containerd.cri.v1
|
||||
time="2025-12-26T17:00:31.731070610Z" level=info msg="starting cri plugin" config="{\"containerd\":{\"defaultRuntimeName\":\"runc\",\"runtimes\":{\"runc\":{\"runtimeType\":\"io.containerd.runc.v2\",\"runtimePath\":\"\",\"PodAnnotations\":null,\"ContainerAnnotations\":null,\"options\":{\"BinaryName\":\"\",\"CriuImagePath\":\"\",\"CriuWorkPath\":\"\",\"IoGid\":0,\"IoUid\":0,\"NoNewKeyring\":false,\"Root\":\"\",\"ShimCgroup\":\"\",\"SystemdCgroup\":false},\"privileged_without_host_devices\":false,\"privileged_without_host_devices_all_devices_allowed\":false,\"cgroupWritable\":false,\"baseRuntimeSpec\":\"\",\"cniConfDir\":\"\",\"cniMaxConfNum\":0,\"snapshotter\":\"\",\"sandboxer\":\"podsandbox\",\"io_type\":\"\"}},\"ignoreBlockIONotEnabledErrors\":false,\"ignoreRdtNotEnabledErrors\":false},\"cni\":{\"binDir\":\"\",\"binDirs\":[\"/opt/cni/bin\"],\"confDir\":\"/etc/cni/net.d\",\"maxConfNum\":1,\"setupSerially\":false,\"confTemplate\":\"\",\"ipPref\":\"\",\"useInternalLoopback\":false},\"enableSelinux\":false,\"selinuxCategoryRange\":1024,\"maxContainerLogLineSize\":16384,\"disableApparmor\":false,\"restrictOOMScoreAdj\":false,\"disableProcMount\":false,\"unsetSeccompProfile\":\"\",\"tolerateMissingHugetlbController\":true,\"disableHugetlbController\":true,\"device_ownership_from_security_context\":false,\"ignoreImageDefinedVolumes\":false,\"netnsMountsUnderStateDir\":false,\"enableUnprivilegedPorts\":true,\"enableUnprivilegedICMP\":true,\"enableCDI\":true,\"cdiSpecDirs\":[\"/etc/cdi\",\"/var/run/cdi\"],\"drainExecSyncIOTimeout\":\"0s\",\"ignoreDeprecationWarnings\":null,\"containerdRootDir\":\"/var/lib/docker/containerd/daemon\",\"containerdEndpoint\":\"/var/run/docker/containerd/containerd.sock\",\"rootDir\":\"/var/lib/docker/containerd/daemon/io.containerd.grpc.v1.cri\",\"stateDir\":\"/var/run/docker/containerd/daemon/io.containerd.grpc.v1.cri\"}"
|
||||
time="2025-12-26T17:00:31.731102405Z" level=info msg="loading plugin" id=io.containerd.podsandbox.controller.v1.podsandbox type=io.containerd.podsandbox.controller.v1
|
||||
time="2025-12-26T17:00:31.731128197Z" level=info msg="loading plugin" id=io.containerd.sandbox.controller.v1.shim type=io.containerd.sandbox.controller.v1
|
||||
time="2025-12-26T17:00:31.731193031Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandbox-controllers type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.731200982Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandboxes type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.731205777Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.snapshots type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.731209980Z" level=info msg="loading plugin" id=io.containerd.streaming.v1.manager type=io.containerd.streaming.v1
|
||||
time="2025-12-26T17:00:31.731214824Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.streaming type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.731219248Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.tasks type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.731223844Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.transfer type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.731232946Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.version type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.731239826Z" level=info msg="loading plugin" id=io.containerd.monitor.container.v1.restart type=io.containerd.monitor.container.v1
|
||||
time="2025-12-26T17:00:31.731255852Z" level=info msg="loading plugin" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
|
||||
time="2025-12-26T17:00:31.731263836Z" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
|
||||
time="2025-12-26T17:00:31.731267707Z" level=info msg="loading plugin" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
|
||||
time="2025-12-26T17:00:31.731271783Z" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
|
||||
time="2025-12-26T17:00:31.731275100Z" level=info msg="loading plugin" id=io.containerd.ttrpc.v1.otelttrpc type=io.containerd.ttrpc.v1
|
||||
time="2025-12-26T17:00:31.731280016Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.healthcheck type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:00:31.731448393Z" level=info msg=serving... address=/var/run/docker/containerd/containerd-debug.sock
|
||||
time="2025-12-26T17:00:31.731473806Z" level=info msg=serving... address=/var/run/docker/containerd/containerd.sock.ttrpc
|
||||
time="2025-12-26T17:00:31.731492732Z" level=info msg=serving... address=/var/run/docker/containerd/containerd.sock
|
||||
time="2025-12-26T17:00:31.731503174Z" level=info msg="containerd successfully booted in 0.052761s"
|
||||
time="2025-12-26T17:00:31.734685579Z" level=info msg="OTEL tracing is not configured, using no-op tracer provider"
|
||||
time="2025-12-26T17:00:31.734799553Z" level=info msg="CDI directory does not exist, skipping: failed to monitor for changes: no such file or directory" dir=/etc/cdi
|
||||
time="2025-12-26T17:00:31.734812727Z" level=info msg="CDI directory does not exist, skipping: failed to monitor for changes: no such file or directory" dir=/var/run/cdi
|
||||
time="2025-12-26T17:00:31.741342450Z" level=info msg="Creating a containerd client" address=/var/run/docker/containerd/containerd.sock timeout=1m0s
|
||||
time="2025-12-26T17:00:31.789810808Z" level=info msg="Loading containers: start."
|
||||
time="2025-12-26T17:00:31.789841146Z" level=info msg="Starting daemon with containerd snapshotter integration enabled"
|
||||
time="2025-12-26T17:00:31.790944984Z" level=info msg="Restoring containers: start."
|
||||
time="2025-12-26T17:00:31.801003706Z" level=info msg="Deleting nftables IPv4 rules" error="exec: \"nft\": executable file not found in $PATH"
|
||||
time="2025-12-26T17:00:31.801024443Z" level=info msg="Deleting nftables IPv6 rules" error="exec: \"nft\": executable file not found in $PATH"
|
||||
time="2025-12-26T17:00:31.991621063Z" level=info msg="Loading containers: done."
|
||||
time="2025-12-26T17:00:31.996631011Z" level=warning msg="[DEPRECATION NOTICE]: API is accessible on http://0.0.0.0:2375 without encryption.\n Access to the remote API is equivalent to root access on the host. Refer\n to the 'Docker daemon attack surface' section in the documentation for\n more information: https://docs.docker.com/go/attack-surface/\nIn future versions this will be a hard failure preventing the daemon from starting! Learn more at: https://docs.docker.com/go/api-security/"
|
||||
time="2025-12-26T17:00:31.996653056Z" level=info msg="Docker daemon" commit=fbf3ed2 containerd-snapshotter=true storage-driver=overlayfs version=29.1.3
|
||||
time="2025-12-26T17:00:31.996710585Z" level=info msg="Initializing buildkit"
|
||||
time="2025-12-26T17:00:32.069603995Z" level=info msg="Completed buildkit initialization"
|
||||
time="2025-12-26T17:00:32.072710025Z" level=info msg="Daemon has completed initialization"
|
||||
time="2025-12-26T17:00:32.072752238Z" level=info msg="API listen on /var/run/docker.sock"
|
||||
time="2025-12-26T17:00:32.072773881Z" level=info msg="API listen on [::]:2375"
|
||||
time="2025-12-26T17:00:43.099851916Z" level=info msg="image pulled" digest="sha256:049c6ec3dad73daa72a97d8031862bb66cd07ae65db661c82b9a739cdc3fc294" remote="ghcr.io/kevinveenbirkenbach/alpine-rsync:latest"
|
||||
time="2025-12-26T17:00:48.227195916Z" level=info msg="image pulled" digest="sha256:765942a4039992336de8dd5db680586e1a206607dd06170ff0a37267a9e01958" remote="docker.io/library/alpine:3.20"
|
||||
time="2025-12-26T17:00:53.300823343Z" level=info msg="connecting to shim debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45" address="unix:///run/containerd/s/bc05889af75cafd69995a5da4eaac21a9b7480650f37b4ce1d06f41d828d889e" namespace=moby protocol=ttrpc version=3
|
||||
time="2025-12-26T17:00:53.401038895Z" level=info msg="No non-localhost DNS nameservers are left in resolv.conf. Using default external servers"
|
||||
time="2025-12-26T17:00:53.418527896Z" level=info msg="sbJoin: gwep4 ''->'bbecf7c52919', gwep6 ''->''" eid=bbecf7c52919 ep=elated_snyder net=bridge nid=43f0f11bd281
|
||||
time="2025-12-26T17:00:53.475799953Z" level=info msg="shim disconnected" id=debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45 namespace=moby
|
||||
time="2025-12-26T17:00:53.475826135Z" level=info msg="cleaning up after shim disconnected" id=debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45 namespace=moby
|
||||
time="2025-12-26T17:00:53.475834014Z" level=info msg="cleaning up dead shim" id=debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45 namespace=moby
|
||||
time="2025-12-26T17:00:53.475840126Z" level=info msg="ignoring event" container=debae25e9efdf3852a3a80174d33276bc78d40964c126972a2d9baa6fc637b45 module=libcontainerd namespace=moby topic=/tasks/delete type="*events.TaskDelete"
|
||||
@@ -1,113 +0,0 @@
|
||||
cat: can't open '/proc/net/ip6_tables_names': No such file or directory
|
||||
cat: can't open '/proc/net/arp_tables_names': No such file or directory
|
||||
iptables v1.8.11 (nf_tables)
|
||||
time="2025-12-26T17:04:50.613107807Z" level=info msg="Starting up"
|
||||
time="2025-12-26T17:04:50.613339353Z" level=warning msg="Binding to IP address without --tlsverify is insecure and gives root access on this machine to everyone who has access to your network." host="tcp://0.0.0.0:2375"
|
||||
time="2025-12-26T17:04:50.613346861Z" level=warning msg="Binding to an IP address, even on localhost, can also give access to scripts run in a browser. Be safe out there!" host="tcp://0.0.0.0:2375"
|
||||
time="2025-12-26T17:04:50.613349917Z" level=warning msg="[DEPRECATION NOTICE] In future versions this will be a hard failure preventing the daemon from starting! Learn more at: https://docs.docker.com/go/api-security/" host="tcp://0.0.0.0:2375"
|
||||
time="2025-12-26T17:04:51.613771872Z" level=info msg="containerd not running, starting managed containerd"
|
||||
time="2025-12-26T17:04:51.614652534Z" level=info msg="started new containerd process" address=/var/run/docker/containerd/containerd.sock module=libcontainerd pid=38
|
||||
time="2025-12-26T17:04:51.622815401Z" level=info msg="starting containerd" revision=1c4457e00facac03ce1d75f7b6777a7a851e5c41 version=v2.2.0
|
||||
time="2025-12-26T17:04:51.627029971Z" level=warning msg="Configuration migrated from version 2, use `containerd config migrate` to avoid migration" t="1.695µs"
|
||||
time="2025-12-26T17:04:51.627048536Z" level=info msg="loading plugin" id=io.containerd.content.v1.content type=io.containerd.content.v1
|
||||
time="2025-12-26T17:04:51.627067091Z" level=info msg="loading plugin" id=io.containerd.image-verifier.v1.bindir type=io.containerd.image-verifier.v1
|
||||
time="2025-12-26T17:04:51.627071644Z" level=info msg="loading plugin" id=io.containerd.internal.v1.opt type=io.containerd.internal.v1
|
||||
time="2025-12-26T17:04:51.627157330Z" level=info msg="loading plugin" id=io.containerd.warning.v1.deprecations type=io.containerd.warning.v1
|
||||
time="2025-12-26T17:04:51.627162094Z" level=info msg="loading plugin" id=io.containerd.mount-handler.v1.erofs type=io.containerd.mount-handler.v1
|
||||
time="2025-12-26T17:04:51.627168687Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627186430Z" level=info msg="skip loading plugin" error="no scratch file generator: skip plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627190221Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627194071Z" level=info msg="skip loading plugin" error="devmapper not configured: skip plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627197321Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.erofs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627263105Z" level=info msg="skip loading plugin" error="EROFS unsupported, please `modprobe erofs`: skip plugin" id=io.containerd.snapshotter.v1.erofs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627267252Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.native type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627289297Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.overlayfs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627351514Z" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.zfs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627366412Z" level=info msg="skip loading plugin" error="lstat /var/lib/docker/containerd/daemon/io.containerd.snapshotter.v1.zfs: no such file or directory: skip plugin" id=io.containerd.snapshotter.v1.zfs type=io.containerd.snapshotter.v1
|
||||
time="2025-12-26T17:04:51.627370505Z" level=info msg="loading plugin" id=io.containerd.event.v1.exchange type=io.containerd.event.v1
|
||||
time="2025-12-26T17:04:51.627384024Z" level=info msg="loading plugin" id=io.containerd.monitor.task.v1.cgroups type=io.containerd.monitor.task.v1
|
||||
time="2025-12-26T17:04:51.627567625Z" level=info msg="loading plugin" id=io.containerd.metadata.v1.bolt type=io.containerd.metadata.v1
|
||||
time="2025-12-26T17:04:51.627694627Z" level=info msg="metadata content store policy set" policy=shared
|
||||
time="2025-12-26T17:04:51.671110562Z" level=info msg="loading plugin" id=io.containerd.gc.v1.scheduler type=io.containerd.gc.v1
|
||||
time="2025-12-26T17:04:51.671180400Z" level=info msg="loading plugin" id=io.containerd.nri.v1.nri type=io.containerd.nri.v1
|
||||
time="2025-12-26T17:04:51.671214347Z" level=info msg="built-in NRI default validator is disabled"
|
||||
time="2025-12-26T17:04:51.671233509Z" level=info msg="runtime interface created"
|
||||
time="2025-12-26T17:04:51.671237604Z" level=info msg="created NRI interface"
|
||||
time="2025-12-26T17:04:51.671243623Z" level=info msg="loading plugin" id=io.containerd.differ.v1.erofs type=io.containerd.differ.v1
|
||||
time="2025-12-26T17:04:51.671341286Z" level=info msg="skip loading plugin" error="failed to check mkfs.erofs availability: failed to run mkfs.erofs --help: exec: \"mkfs.erofs\": executable file not found in $PATH: skip plugin" id=io.containerd.differ.v1.erofs type=io.containerd.differ.v1
|
||||
time="2025-12-26T17:04:51.671353665Z" level=info msg="loading plugin" id=io.containerd.differ.v1.walking type=io.containerd.differ.v1
|
||||
time="2025-12-26T17:04:51.671363925Z" level=info msg="loading plugin" id=io.containerd.lease.v1.manager type=io.containerd.lease.v1
|
||||
time="2025-12-26T17:04:51.671371889Z" level=info msg="loading plugin" id=io.containerd.mount-manager.v1.bolt type=io.containerd.mount-manager.v1
|
||||
time="2025-12-26T17:04:51.682298424Z" level=info msg="loading plugin" id=io.containerd.service.v1.containers-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:04:51.682322472Z" level=info msg="loading plugin" id=io.containerd.service.v1.content-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:04:51.682333398Z" level=info msg="loading plugin" id=io.containerd.service.v1.diff-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:04:51.682341979Z" level=info msg="loading plugin" id=io.containerd.service.v1.images-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:04:51.682350038Z" level=info msg="loading plugin" id=io.containerd.service.v1.introspection-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:04:51.682357562Z" level=info msg="loading plugin" id=io.containerd.service.v1.namespaces-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:04:51.682373750Z" level=info msg="loading plugin" id=io.containerd.service.v1.snapshots-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:04:51.682381707Z" level=info msg="loading plugin" id=io.containerd.shim.v1.manager type=io.containerd.shim.v1
|
||||
time="2025-12-26T17:04:51.682391080Z" level=info msg="loading plugin" id=io.containerd.runtime.v2.task type=io.containerd.runtime.v2
|
||||
time="2025-12-26T17:04:51.682525041Z" level=info msg="loading plugin" id=io.containerd.service.v1.tasks-service type=io.containerd.service.v1
|
||||
time="2025-12-26T17:04:51.682541064Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.containers type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.682550397Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.content type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.682557457Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.diff type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.682565722Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.events type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.682572929Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.images type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.682580571Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.introspection type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.682587529Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.leases type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.682595171Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.mounts type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.682601599Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.namespaces type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.682610883Z" level=info msg="loading plugin" id=io.containerd.sandbox.store.v1.local type=io.containerd.sandbox.store.v1
|
||||
time="2025-12-26T17:04:51.682621078Z" level=info msg="loading plugin" id=io.containerd.transfer.v1.local type=io.containerd.transfer.v1
|
||||
time="2025-12-26T17:04:51.682644046Z" level=info msg="loading plugin" id=io.containerd.cri.v1.images type=io.containerd.cri.v1
|
||||
time="2025-12-26T17:04:51.682674205Z" level=info msg="Get image filesystem path \"/var/lib/docker/containerd/daemon/io.containerd.snapshotter.v1.overlayfs\" for snapshotter \"overlayfs\""
|
||||
time="2025-12-26T17:04:51.682683653Z" level=info msg="Start snapshots syncer"
|
||||
time="2025-12-26T17:04:51.682701064Z" level=info msg="loading plugin" id=io.containerd.cri.v1.runtime type=io.containerd.cri.v1
|
||||
time="2025-12-26T17:04:51.682882056Z" level=info msg="starting cri plugin" config="{\"containerd\":{\"defaultRuntimeName\":\"runc\",\"runtimes\":{\"runc\":{\"runtimeType\":\"io.containerd.runc.v2\",\"runtimePath\":\"\",\"PodAnnotations\":null,\"ContainerAnnotations\":null,\"options\":{\"BinaryName\":\"\",\"CriuImagePath\":\"\",\"CriuWorkPath\":\"\",\"IoGid\":0,\"IoUid\":0,\"NoNewKeyring\":false,\"Root\":\"\",\"ShimCgroup\":\"\",\"SystemdCgroup\":false},\"privileged_without_host_devices\":false,\"privileged_without_host_devices_all_devices_allowed\":false,\"cgroupWritable\":false,\"baseRuntimeSpec\":\"\",\"cniConfDir\":\"\",\"cniMaxConfNum\":0,\"snapshotter\":\"\",\"sandboxer\":\"podsandbox\",\"io_type\":\"\"}},\"ignoreBlockIONotEnabledErrors\":false,\"ignoreRdtNotEnabledErrors\":false},\"cni\":{\"binDir\":\"\",\"binDirs\":[\"/opt/cni/bin\"],\"confDir\":\"/etc/cni/net.d\",\"maxConfNum\":1,\"setupSerially\":false,\"confTemplate\":\"\",\"ipPref\":\"\",\"useInternalLoopback\":false},\"enableSelinux\":false,\"selinuxCategoryRange\":1024,\"maxContainerLogLineSize\":16384,\"disableApparmor\":false,\"restrictOOMScoreAdj\":false,\"disableProcMount\":false,\"unsetSeccompProfile\":\"\",\"tolerateMissingHugetlbController\":true,\"disableHugetlbController\":true,\"device_ownership_from_security_context\":false,\"ignoreImageDefinedVolumes\":false,\"netnsMountsUnderStateDir\":false,\"enableUnprivilegedPorts\":true,\"enableUnprivilegedICMP\":true,\"enableCDI\":true,\"cdiSpecDirs\":[\"/etc/cdi\",\"/var/run/cdi\"],\"drainExecSyncIOTimeout\":\"0s\",\"ignoreDeprecationWarnings\":null,\"containerdRootDir\":\"/var/lib/docker/containerd/daemon\",\"containerdEndpoint\":\"/var/run/docker/containerd/containerd.sock\",\"rootDir\":\"/var/lib/docker/containerd/daemon/io.containerd.grpc.v1.cri\",\"stateDir\":\"/var/run/docker/containerd/daemon/io.containerd.grpc.v1.cri\"}"
|
||||
time="2025-12-26T17:04:51.682925497Z" level=info msg="loading plugin" id=io.containerd.podsandbox.controller.v1.podsandbox type=io.containerd.podsandbox.controller.v1
|
||||
time="2025-12-26T17:04:51.682973419Z" level=info msg="loading plugin" id=io.containerd.sandbox.controller.v1.shim type=io.containerd.sandbox.controller.v1
|
||||
time="2025-12-26T17:04:51.683071161Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandbox-controllers type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.683095568Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandboxes type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.683108804Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.snapshots type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.683116807Z" level=info msg="loading plugin" id=io.containerd.streaming.v1.manager type=io.containerd.streaming.v1
|
||||
time="2025-12-26T17:04:51.683124837Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.streaming type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.683134026Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.tasks type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.683141550Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.transfer type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.683150586Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.version type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.683157413Z" level=info msg="loading plugin" id=io.containerd.monitor.container.v1.restart type=io.containerd.monitor.container.v1
|
||||
time="2025-12-26T17:04:51.683181945Z" level=info msg="loading plugin" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
|
||||
time="2025-12-26T17:04:51.683191987Z" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
|
||||
time="2025-12-26T17:04:51.683198479Z" level=info msg="loading plugin" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
|
||||
time="2025-12-26T17:04:51.683205005Z" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
|
||||
time="2025-12-26T17:04:51.683210667Z" level=info msg="loading plugin" id=io.containerd.ttrpc.v1.otelttrpc type=io.containerd.ttrpc.v1
|
||||
time="2025-12-26T17:04:51.683217137Z" level=info msg="loading plugin" id=io.containerd.grpc.v1.healthcheck type=io.containerd.grpc.v1
|
||||
time="2025-12-26T17:04:51.683382334Z" level=info msg=serving... address=/var/run/docker/containerd/containerd-debug.sock
|
||||
time="2025-12-26T17:04:51.683440740Z" level=info msg=serving... address=/var/run/docker/containerd/containerd.sock.ttrpc
|
||||
time="2025-12-26T17:04:51.683482395Z" level=info msg=serving... address=/var/run/docker/containerd/containerd.sock
|
||||
time="2025-12-26T17:04:51.683496332Z" level=info msg="containerd successfully booted in 0.061180s"
|
||||
time="2025-12-26T17:04:51.689868310Z" level=info msg="OTEL tracing is not configured, using no-op tracer provider"
|
||||
time="2025-12-26T17:04:51.689928240Z" level=info msg="CDI directory does not exist, skipping: failed to monitor for changes: no such file or directory" dir=/etc/cdi
|
||||
time="2025-12-26T17:04:51.689933180Z" level=info msg="CDI directory does not exist, skipping: failed to monitor for changes: no such file or directory" dir=/var/run/cdi
|
||||
time="2025-12-26T17:04:51.696060714Z" level=info msg="Creating a containerd client" address=/var/run/docker/containerd/containerd.sock timeout=1m0s
|
||||
time="2025-12-26T17:04:51.748026436Z" level=info msg="Loading containers: start."
|
||||
time="2025-12-26T17:04:51.748060954Z" level=info msg="Starting daemon with containerd snapshotter integration enabled"
|
||||
time="2025-12-26T17:04:51.749558601Z" level=info msg="Restoring containers: start."
|
||||
time="2025-12-26T17:04:51.759819367Z" level=info msg="Deleting nftables IPv4 rules" error="exec: \"nft\": executable file not found in $PATH"
|
||||
time="2025-12-26T17:04:51.759838278Z" level=info msg="Deleting nftables IPv6 rules" error="exec: \"nft\": executable file not found in $PATH"
|
||||
time="2025-12-26T17:04:51.947199035Z" level=info msg="Loading containers: done."
|
||||
time="2025-12-26T17:04:51.952524862Z" level=warning msg="[DEPRECATION NOTICE]: API is accessible on http://0.0.0.0:2375 without encryption.\n Access to the remote API is equivalent to root access on the host. Refer\n to the 'Docker daemon attack surface' section in the documentation for\n more information: https://docs.docker.com/go/attack-surface/\nIn future versions this will be a hard failure preventing the daemon from starting! Learn more at: https://docs.docker.com/go/api-security/"
|
||||
time="2025-12-26T17:04:51.952549078Z" level=info msg="Docker daemon" commit=fbf3ed2 containerd-snapshotter=true storage-driver=overlayfs version=29.1.3
|
||||
time="2025-12-26T17:04:51.952629278Z" level=info msg="Initializing buildkit"
|
||||
time="2025-12-26T17:04:52.020834951Z" level=info msg="Completed buildkit initialization"
|
||||
time="2025-12-26T17:04:52.025499900Z" level=info msg="Daemon has completed initialization"
|
||||
time="2025-12-26T17:04:52.025532980Z" level=info msg="API listen on /var/run/docker.sock"
|
||||
time="2025-12-26T17:04:52.025551717Z" level=info msg="API listen on [::]:2375"
|
||||
time="2025-12-26T17:04:57.724576270Z" level=info msg="image pulled" digest="sha256:049c6ec3dad73daa72a97d8031862bb66cd07ae65db661c82b9a739cdc3fc294" remote="ghcr.io/kevinveenbirkenbach/alpine-rsync:latest"
|
||||
time="2025-12-26T17:05:02.767455556Z" level=info msg="image pulled" digest="sha256:765942a4039992336de8dd5db680586e1a206607dd06170ff0a37267a9e01958" remote="docker.io/library/alpine:3.20"
|
||||
time="2025-12-26T17:05:07.941089635Z" level=info msg="connecting to shim f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f" address="unix:///run/containerd/s/d8dd997d64f10682ec22cc749e044ca9c730cb6f71bde41ab934c21fba8c11da" namespace=moby protocol=ttrpc version=3
|
||||
time="2025-12-26T17:05:08.050665605Z" level=info msg="No non-localhost DNS nameservers are left in resolv.conf. Using default external servers"
|
||||
time="2025-12-26T17:05:08.067292062Z" level=info msg="sbJoin: gwep4 ''->'ce9a9cdb2d56', gwep6 ''->''" eid=ce9a9cdb2d56 ep=eloquent_solomon net=bridge nid=f9303d265b7c
|
||||
time="2025-12-26T17:05:08.122943760Z" level=info msg="ignoring event" container=f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f module=libcontainerd namespace=moby topic=/tasks/delete type="*events.TaskDelete"
|
||||
time="2025-12-26T17:05:08.123007623Z" level=info msg="shim disconnected" id=f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f namespace=moby
|
||||
time="2025-12-26T17:05:08.123023007Z" level=info msg="cleaning up after shim disconnected" id=f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f namespace=moby
|
||||
time="2025-12-26T17:05:08.123026335Z" level=info msg="cleaning up dead shim" id=f606f132edfe329a81b3ec57a35a707f957409c387c10e7b8e78f984cbbef72f namespace=moby
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -10,7 +10,7 @@ from .db.mariadb import restore_mariadb_sql
|
||||
|
||||
|
||||
def _add_common_backup_args(p: argparse.ArgumentParser) -> None:
|
||||
p.add_argument("volume_name", help="Docker volume name")
|
||||
p.add_argument("volume_name", help="Docker volume name (target volume)")
|
||||
p.add_argument("backup_hash", help="Hashed machine id")
|
||||
p.add_argument("version", help="Backup version directory name")
|
||||
|
||||
@@ -33,10 +33,28 @@ def main(argv: list[str] | None = None) -> int:
|
||||
)
|
||||
sub = parser.add_subparsers(dest="cmd", required=True)
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# files
|
||||
# ------------------------------------------------------------------
|
||||
p_files = sub.add_parser("files", help="Restore files into a docker volume")
|
||||
_add_common_backup_args(p_files)
|
||||
p_files.add_argument("--rsync-image", default="ghcr.io/kevinveenbirkenbach/alpine-rsync")
|
||||
p_files.add_argument(
|
||||
"--rsync-image",
|
||||
default="ghcr.io/kevinveenbirkenbach/alpine-rsync",
|
||||
)
|
||||
p_files.add_argument(
|
||||
"--source-volume",
|
||||
default=None,
|
||||
help=(
|
||||
"Volume name used as backup source path key. "
|
||||
"Defaults to <volume_name> (target volume). "
|
||||
"Use this when restoring from one volume backup into a different target volume."
|
||||
),
|
||||
)
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# postgres
|
||||
# ------------------------------------------------------------------
|
||||
p_pg = sub.add_parser("postgres", help="Restore a single PostgreSQL database dump")
|
||||
_add_common_backup_args(p_pg)
|
||||
p_pg.add_argument("--container", required=True)
|
||||
@@ -45,6 +63,9 @@ def main(argv: list[str] | None = None) -> int:
|
||||
p_pg.add_argument("--db-password", required=True)
|
||||
p_pg.add_argument("--empty", action="store_true")
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# mariadb
|
||||
# ------------------------------------------------------------------
|
||||
p_mdb = sub.add_parser("mariadb", help="Restore a single MariaDB/MySQL-compatible dump")
|
||||
_add_common_backup_args(p_mdb)
|
||||
p_mdb.add_argument("--container", required=True)
|
||||
@@ -55,17 +76,25 @@ def main(argv: list[str] | None = None) -> int:
|
||||
|
||||
args = parser.parse_args(argv)
|
||||
|
||||
bp = BackupPaths(
|
||||
args.volume_name,
|
||||
args.backup_hash,
|
||||
args.version,
|
||||
repo_name=args.repo_name,
|
||||
backups_dir=args.backups_dir,
|
||||
)
|
||||
|
||||
try:
|
||||
if args.cmd == "files":
|
||||
return restore_volume_files(args.volume_name, bp.files_dir(), rsync_image=args.rsync_image)
|
||||
# target volume = args.volume_name
|
||||
# source volume (backup key) defaults to target volume
|
||||
source_volume = args.source_volume or args.volume_name
|
||||
|
||||
bp_files = BackupPaths(
|
||||
source_volume,
|
||||
args.backup_hash,
|
||||
args.version,
|
||||
repo_name=args.repo_name,
|
||||
backups_dir=args.backups_dir,
|
||||
)
|
||||
|
||||
return restore_volume_files(
|
||||
args.volume_name,
|
||||
bp_files.files_dir(),
|
||||
rsync_image=args.rsync_image,
|
||||
)
|
||||
|
||||
if args.cmd == "postgres":
|
||||
user = args.db_user or args.db_name
|
||||
@@ -74,7 +103,13 @@ def main(argv: list[str] | None = None) -> int:
|
||||
db_name=args.db_name,
|
||||
user=user,
|
||||
password=args.db_password,
|
||||
sql_path=bp.sql_file(args.db_name),
|
||||
sql_path=BackupPaths(
|
||||
args.volume_name,
|
||||
args.backup_hash,
|
||||
args.version,
|
||||
repo_name=args.repo_name,
|
||||
backups_dir=args.backups_dir,
|
||||
).sql_file(args.db_name),
|
||||
empty=args.empty,
|
||||
)
|
||||
return 0
|
||||
@@ -86,7 +121,13 @@ def main(argv: list[str] | None = None) -> int:
|
||||
db_name=args.db_name,
|
||||
user=user,
|
||||
password=args.db_password,
|
||||
sql_path=bp.sql_file(args.db_name),
|
||||
sql_path=BackupPaths(
|
||||
args.volume_name,
|
||||
args.backup_hash,
|
||||
args.version,
|
||||
repo_name=args.repo_name,
|
||||
backups_dir=args.backups_dir,
|
||||
).sql_file(args.db_name),
|
||||
empty=args.empty,
|
||||
)
|
||||
return 0
|
||||
|
||||
@@ -61,16 +61,26 @@ class TestE2EFilesFull(unittest.TestCase):
|
||||
cleanup_docker(containers=cls.containers, volumes=cls.volumes)
|
||||
|
||||
def test_files_backup_exists(self) -> None:
|
||||
p = backup_path(self.backups_dir, self.repo_name, self.version, self.volume_src) / "files" / "hello.txt"
|
||||
p = (
|
||||
backup_path(
|
||||
self.backups_dir,
|
||||
self.repo_name,
|
||||
self.version,
|
||||
self.volume_src,
|
||||
)
|
||||
/ "files"
|
||||
/ "hello.txt"
|
||||
)
|
||||
self.assertTrue(p.is_file(), f"Expected backed up file at: {p}")
|
||||
|
||||
def test_restore_files_into_new_volume(self) -> None:
|
||||
# restore files into dst volume
|
||||
# restore files from volume_src backup into volume_dst
|
||||
run([
|
||||
"baudolo-restore", "files",
|
||||
self.volume_dst, self.hash, self.version,
|
||||
"--backups-dir", self.backups_dir,
|
||||
"--repo-name", self.repo_name,
|
||||
"--source-volume", self.volume_src,
|
||||
"--rsync-image", "ghcr.io/kevinveenbirkenbach/alpine-rsync",
|
||||
])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user