N8N / Dockerfile
binary1ne's picture
Update Dockerfile
a80e7bc verified
raw
history blame contribute delete
292 Bytes
FROM n8nio/n8n:latest
# Configuration environment variables
ENV N8N_PORT=7860 \
N8N_LISTEN_ADDRESS=0.0.0.0 \
N8N_PROXY_HOPS=1 \
N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true \
N8N_RUNNERS_ENABLED=true
RUN echo "Hostname : $hostname"
EXPOSE 7860
#CMD ["n8n license:info"]