10 lines
259 B
Plaintext
10 lines
259 B
Plaintext
|
#! /bin/sh
|
||
|
me=$(basename $(pwd))
|
||
|
podman rm $me
|
||
|
podman run \
|
||
|
--name $me \
|
||
|
--network homelab \
|
||
|
--volume /srv/secrets/passwd:/run/secrets/passwd:ro \
|
||
|
--volume /srv/secrets/simpleauth.key:/run/secrets/simpleauth.key:ro \
|
||
|
git.woozle.org/neale/simpleauth
|