9 lines
259 B
Bash
Executable file
9 lines
259 B
Bash
Executable file
#! /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
|