Open
Conversation
Collaborator
|
Thanks! Looks like it's lacking the logo. |
|
Hello, I used this and also added a postgres to use internally for embeddings. Could we consider adding a db to it? captainVersion: 4
services:
$$cap_appname-postgres:
image: ankane/pgvector
environment:
POSTGRES_USER: myuser
POSTGRES_PASSWORD: mypassword
POSTGRES_DB: mydb
volumes:
- $$cap_appname-db-data:/var/lib/postgresql/data
caproverExtra:
notExposeAsWebApp: 'true'
$$cap_appname:
restartPolicy: never
environment:
DATABASE_URL: postgres://myuser:mypassword@postgres:5432/mydb
FLOWISE_USERNAME: $$cap_flowise_username
FLOWISE_PASSWORD: $$cap_flowise_password
caproverExtra:
containerHttpPort: 3000
dockerfileLines:
- FROM flowiseai/flowise:$$cap_flowise_version
- CMD /bin/sh -c "sleep 3; flowise start"
volumes:
- $$cap_appname-db-data:/root/.flowise
caproverOneClickApp:
variables:
- id: $$cap_flowise_version
label: Flowise version
defaultValue: '1.4.3'
description: Checkout their docker page for the valid tags https://hub.docker.com/r/flowiseai/flowise/tags
validRegex: /^([^\s^\/])+$/
- id: $$cap_flowise_username
label: Flowise Username
description: 'Your Flowise username'
- id: $$cap_flowise_password
label: Flowise Password
description: 'Your Flowise password'
instructions:
start: >-
Flowise is a powerful AI tool. Before you start, make sure you have all your environment variables ready to input.
end: >-
Your Flowise app is now deployed and running!
displayName: 'Flowise'
description: 'Flowise AI Tool'
documentation: 'https://github.com/FlowiseAI/Flowise' |
Thank you @malipetek! It works for me. |
OMG I just deployed Flowise using this!! Thank you!! <3 @malipetek |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
☑️ Self Check before Merge
npm ci && npm run validate_apps && npm run formatter