11 lines
282 B
Plaintext
11 lines
282 B
Plaintext
|
#! /bin/sh
|
||
|
me=$(basename $(pwd))
|
||
|
podman rm $me
|
||
|
podman run \
|
||
|
--name $me \
|
||
|
--network homelab \
|
||
|
--env PS_SHARED_SECRET_FILE=/run/secrets/picoshare \
|
||
|
--volume /srv/sys/picoshare:/data \
|
||
|
--volume /srv/secrets/picoshare:/run/secrets/picoshare \
|
||
|
git.woozle.org/neale/picoshare
|