11 lines
282 B
Bash
Executable File
11 lines
282 B
Bash
Executable File
#! /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
|