Mosq2/test
0
1# Use the official image from the GitHub Container Registry2FROM ghcr.io/open-webui/open-webui:main3 4# Set the working directory to /app5WORKDIR /app6 7# Expose port 80808EXPOSE 80809 10# Mount the volume for the backend data11VOLUME ["/app/backend/data"]12 13# Add the host.docker.internal:host-gateway mapping14ADD_HOST host.docker.internal:host-gateway15 16# Set the restart policy to always17RESTART always18 19# Set the name of the container20NAME open-webui21 22# Set the command to start the application23CMD ["npm", "start"]24 25# Build the Docker image26RUN docker build -t open-webui .27 