13 lines
383 B
Bash
Executable file
13 lines
383 B
Bash
Executable file
#!/bin/bash
|
|
# Exercise 6 — Bind Mounts
|
|
|
|
# Terminal 1: write dates to /tmp/output (detached)
|
|
podman run -d --name writer -v /tmp:/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 /tmp:/data busybox tail -f /data/output
|
|
|
|
# Cleanup
|
|
podman stop writer && podman rm writer
|
|
rm -f /tmp/output
|