n8n / Dockerfile
zhidong010's picture
Upload folder using huggingface_hub
70fe4e4 verified
raw
history blame contribute delete
860 Bytes
FROM docker.n8n.io/n8nio/n8n:latest
# Set the host to 0.0.0.0 to allow external access
ENV N8N_HOST=0.0.0.0
# Change the default port from 5678 to 7860
ENV N8N_PORT=7860
# Fix permissions warning
ENV N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
# Set your space url here
ENV WEBHOOK_URL=
# Enable task runners to avoid deprecation warning
ENV N8N_RUNNERS_ENABLED=true
# ============================================
# PostgreSQL Database Configuration
# ============================================
# Use PostgreSQL as the database backend for persistence
ENV DB_TYPE=postgresdb
# PostgreSQL connection settings
ENV DB_POSTGRESDB_HOST=74.48.192.100
ENV DB_POSTGRESDB_PORT=15432
ENV DB_POSTGRESDB_DATABASE=n8n_data
ENV DB_POSTGRESDB_USER=postgres
ENV DB_POSTGRESDB_PASSWORD=Ld.atA*uuIDDjvQz6zQ70
# Expose the custom port for Hugging Face Spaces
EXPOSE 7860