front-end-fix

This commit is contained in:
Tour
2025-12-06 06:14:26 +01:00
parent 9f5003ecc5
commit d8f7464944
2 changed files with 3 additions and 2 deletions

View File

@@ -24,7 +24,8 @@ RUN apt-get update && \
# Create user (Debian syntax)
RUN groupadd -r quarkus && useradd -r -g quarkus quarkus
# Create user with explicit UID 1000 (Debian syntax)
RUN groupadd -r -g 1000 quarkus && useradd -r -u 1000 -g quarkus quarkus
# Create the data directory and set ownership BEFORE switching user
RUN mkdir -p /mnt/okcomputer/output && \
chown -R quarkus:quarkus /mnt/okcomputer/output

View File

@@ -1,6 +1,6 @@
services:
auctiora:
#user: "1000:1000"
user: "1000:1000"
build:
context: /opt/apps/auctiora
dockerfile: Dockerfile