fix the manager

This commit is contained in:
2026-07-06 12:34:01 +02:00
parent 948f209436
commit 0572efba8b
4 changed files with 115 additions and 15 deletions

View File

@@ -6,16 +6,16 @@ set -euo pipefail
# The manager normally proxies user ports; the first command block matches the manager
# container creation and does not publish ports.
# User: mario - manager-equivalent container
docker volume create v-conf-mario >/dev/null
# User: tomas - manager-equivalent container
docker volume create v-conf-tomas >/dev/null
docker run -d \
--name fis-mario \
--name fis-tomas \
--restart always \
--volume v-conf-mario:/config:rw \
--volume v-conf-tomas:/config:rw \
--env PUID=1000 \
--env PGID=1000 \
--env PASSWORD=mario \
--env CUSTOM_USER=mario \
--env PASSWORD=tomasmali92 \
--env CUSTOM_USER=tomas \
--memory 3g \
--memory-swap 5g \
--privileged \
@@ -23,17 +23,17 @@ docker run -d \
--interactive \
fis
# Emergency direct access for mario on host port 3001:
# docker rm -f fis-mario || true
# Emergency direct access for tomas on host port 3009:
# docker rm -f fis-tomas || true
# docker run -d \
# --name fis-mario \
# --name fis-tomas \
# --restart always \
# -p 3001:3000 \
# --volume v-conf-mario:/config:rw \
# -p 3009:3000 \
# --volume v-conf-tomas:/config:rw \
# --env PUID=1000 \
# --env PGID=1000 \
# --env PASSWORD=mario \
# --env CUSTOM_USER=mario \
# --env PASSWORD=tomasmali92 \
# --env CUSTOM_USER=tomas \
# --memory 3g \
# --memory-swap 5g \
# --privileged \