🐳 Build Raspberry Pi Docker image correctly

This commit is contained in:
Jan Oberhauser
2020-07-05 19:22:25 +02:00
parent 559afb488b
commit b4b65bb906
5 changed files with 116 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
## Build Docker-Image
```
docker build --build-arg N8N_VERSION=<VERSION> -t n8nio/n8n:<VERSION> .
# For example:
docker build --build-arg N8N_VERSION=0.36.1 -t n8nio/n8n:0.36.1-rhel7 .
```
```
docker run -it --rm \
--name n8n \
-p 5678:5678 \
n8nio/n8n:0.25.0-ubuntu
```