├── .gitattributes ├── Dockerfile ├── README.md ├── docker-entrypoint.sh ├── env.sh └── run.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maspio/n8n-puppeteer-docker/HEAD/.gitattributes -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maspio/n8n-puppeteer-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maspio/n8n-puppeteer-docker/HEAD/README.md -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maspio/n8n-puppeteer-docker/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export N8N_VERSION=0.181.2 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maspio/n8n-puppeteer-docker/HEAD/run.sh --------------------------------------------------------------------------------