Initial push

This commit is contained in:
Henry
2023-04-06 22:17:34 +01:00
commit 05c86ff9c5
162 changed files with 9112 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM node:14.20.0-alpine
USER root
RUN apk add --no-cache git
RUN apk add --no-cache python3 py3-pip
# You can install a specific version like: flowise@1.0.0
RUN npm install -g flowise
WORKDIR /data
CMD "flowise"
+23
View File
@@ -0,0 +1,23 @@
version: '3.1'
services:
mongo:
image: mongo
ports:
- '27017:27017'
restart: always
environment:
- MONGO_INITDB_DATABASE=flowiseai
flowise:
image: flowiseai/flowise
restart: always
environment:
- PORT=${PORT}
ports:
- '${PORT}:${PORT}'
links:
- mongo
volumes:
- ~/.flowise:/root/.flowise
command: /bin/sh -c "sleep 3; flowise start"