This commit is contained in:
2025-09-24 11:54:34 +00:00
parent eee12f9651
commit 0800c8f700
3 changed files with 1 additions and 6 deletions

View File

@@ -3,9 +3,7 @@
.gitignore
README.md
LICENSE
VERSION
*.log
*.tmp
.env
docker-compose.yaml
Dockerfile.minimal

View File

@@ -5,8 +5,7 @@ RUN apk add --no-cache socat netcat-openbsd \
&& rm -rf /var/cache/apk/* /tmp/*
# Create socket directory and copy/set permissions in single layers
COPY entrypoint.sh /entrypoint.sh
COPY VERSION /VERSION
COPY entrypoint.sh VERSION /
RUN mkdir -p /socket \
&& chmod +x /entrypoint.sh

View File

@@ -10,6 +10,4 @@ services:
- HOST_SOCKET_PATH=${HOST_SOCKET_PATH}
volumes:
- ${HOST_SOCKET_PATH}:${UNIX_SOCKET_PATH}
networks:
- proxy-network
restart: unless-stopped