enable remote access

This commit is contained in:
2026-02-06 19:00:27 +01:00
parent 62af8c1ed7
commit 4253ca5ffe
3 changed files with 18 additions and 3 deletions

View File

@@ -8,6 +8,7 @@ RUN apt-get update && \
FROM debian:trixie
COPY start.sh .
COPY initialconfig.json .
COPY --from=builder /usr/bin/hyperiond /usr/bin/hyperiond
RUN apt-get update && \
apt-get upgrade -y -q && \
@@ -45,5 +46,4 @@ ENV UID=1000
ENV GID=1000
SHELL ["/bin/bash", "-c"]
ENTRYPOINT bash start.sh uid="$UID" gid="$GID"
#ENTRYPOINT tail -f /dev/null
ENTRYPOINT bash start.sh uid="$UID" gid="$GID" server_address="$SERVER_ADDRESS"