15 lines
449 B
Bash
Executable file
15 lines
449 B
Bash
Executable file
#!/bin/bash
|
|
# Exercise 7 — Named Volumes (shared between containers)
|
|
|
|
podman volume create pizza
|
|
|
|
# Terminal 1: write dates into the volume (detached)
|
|
podman run -d --name writer -v pizza:/data busybox \
|
|
sh -c 'while true; do sleep 1; date >> /data/output; done'
|
|
|
|
# Terminal 2: watch the output (Ctrl+C to exit)
|
|
podman run --rm -v pizza:/data busybox tail -f /data/output
|
|
|
|
# Cleanup
|
|
podman stop writer && podman rm writer
|
|
podman volume rm pizza
|