13 lines
396 B
Bash
Executable File
13 lines
396 B
Bash
Executable File
#! /bin/sh
|
|
me=$(basename $(pwd))
|
|
podman rm $me
|
|
podman run \
|
|
--name $me \
|
|
--network homelab \
|
|
--volume /srv/sys/pigallery2/config:/app/data/config \
|
|
--volume /srv/sys/pigallery2/db:/app/data/db \
|
|
--volume /srv/sys/pigallery2/cache:/app/data/cache \
|
|
--volume /srv/storage/fam/Photos:/photos/fam:ro \
|
|
--volume /srv/storage/ginnie/Photos:/photos/ginnie:ro \
|
|
bpatrik/pigallery2:latest
|