forked from n8n-io/n8n
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaces n8n docker config with custom
- Loading branch information
Showing
29 changed files
with
66,789 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
node_modules | ||
packages/*/node_modules | ||
packages/*/dist | ||
======= | ||
**/node_modules/** | ||
**/dist/** | ||
**/*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: "3.7" | ||
services: | ||
n8n: | ||
image: osiris-n8n | ||
build: | ||
dockerfile: docker/Dockerfile | ||
context: . | ||
container_name: osiris-n8n | ||
ports: ["5678:5678"] | ||
|
||
minio: | ||
image: minio/minio | ||
container_name: osiris-minio | ||
environment: | ||
MINIO_ACCESS_KEY: 1234 | ||
MINIO_SECRET_KEY: 567891234 | ||
command: | ||
- server | ||
- /data | ||
ports: ["9000:9000"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM node:12 | ||
|
||
# Project needs yarn to run | ||
# https://classic.yarnpkg.com/en/docs/install/#debian-stable | ||
RUN apt-get update && \ | ||
apt-get install apt-transport-https && \ | ||
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ | ||
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ | ||
apt-get update && \ | ||
apt-get install yarn -y && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY . /app | ||
RUN useradd -s /bin/bash -m n8n && \ | ||
chown -R n8n:n8n /app | ||
|
||
USER n8n | ||
WORKDIR /app | ||
|
||
RUN npm i && npm run bootstrap && npm run build | ||
|
||
CMD ["npm", "run", "start"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.