mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
15 lines
461 B
Bash
15 lines
461 B
Bash
#!/bin/sh
|
|
CONTAINER=wireguard
|
|
# Starts a wireguard container that is deleted after it is stopped.
|
|
# All configs stored in /mnt/data/wireguard
|
|
if podman container exists ${CONTAINER}; then
|
|
podman start ${CONTAINER}
|
|
else
|
|
podman run -i -d --rm --net=host --name ${CONTAINER} --privileged \
|
|
-v /mnt/data/wireguard:/etc/wireguard \
|
|
-v /dev/net/tun:/dev/net/tun \
|
|
-e LOG_LEVEL=info -e WG_COLOR_MODE=always \
|
|
masipcat/wireguard-go:0.0.20210424
|
|
fi
|
|
|