Fix isos uid for newer releases

This commit is contained in:
Thomas Lovén 2025-10-18 23:12:29 +02:00
parent deb232aa0f
commit 31b163bda1
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@ FROM ghcr.io/netbootxyz/netbootxyz
COPY smb.conf /etc/samba/smb.conf COPY smb.conf /etc/samba/smb.conf
COPY samba.ini /etc/supervisor.d/samba.ini COPY samba.ini /etc/supervisor.d/samba.ini
RUN apk add samba \ RUN apk add samba \
&& adduser isos --disabled-password \ && adduser -u 1010 -g 1010 isos --disabled-password \
&& echo -e "isos\nisos" | smbpasswd -a -s -c /etc/samba/smb.conf isos && echo -e "isos\nisos" | smbpasswd -a -s -c /etc/samba/smb.conf isos
RUN cat /etc/supervisor.d/samba.ini >> /etc/supervisor.conf RUN cat /etc/supervisor.d/samba.ini >> /etc/supervisor.conf

View File

@ -7,7 +7,7 @@ networks:
services: services:
netboot: netboot:
build: build:
context: ./build-netbootxyz context: ./build
# image: ghcr.io/netbootxyz/netbootxyz # image: ghcr.io/netbootxyz/netbootxyz
restart: unless-stopped restart: unless-stopped
volumes: volumes: