Spaces:
Merlintxu
/
Runtime error

n8n / Dockerfile
Merlintxu's picture
Update Dockerfile
5ea837e verified
raw
history blame contribute delete
504 Bytes
ARG N8N_VERSION=stable
FROM docker.n8n.io/n8nio/n8n:next
LABEL maintainer="Xiaoliang <[email protected]>"
ENV N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true \
N8N_RUNNERS_ENABLED=true \
N8N_PROXY_HOPS=1
# https://huggingface.co/docs/hub/spaces-sdks-docker#permissions
# The container runs with user ID 1000.
# node docker image already has a user named node with ID 1000.
USER node
VOLUME ["$HOME/.n8n"]
# n8n default port
EXPOSE 5678
ENTRYPOINT ["tini", "--", "/docker-entrypoint.sh"]