Replies: 2 comments
-
Found the solution. Install older version |
Beta Was this translation helpful? Give feedback.
0 replies
-
You should check your environment variable .The error suggest that your environment variables like DATABASE_TYPE, DATABASE_PORT, DATABASE_HOST, DATABASE_NAME, DATABASE_USER, DATABASE_PASSWORD, and others are not set. first check your .env or .env.local file , is that correctly written . Youcan check that by typing ' cat filename ' in your terminal. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
HI, I followed this guide https://docs.flowiseai.com/configuration/deployment/aws trying to setup my server on amazon but i am getting stuck at Step 7. This is what I have after I ran "docker-compose up -d"
WARNING: The DEBUG variable is not set. Defaulting to a blank string.
WARNING: The DATABASE_TYPE variable is not set. Defaulting to a blank string.
WARNING: The DATABASE_PORT variable is not set. Defaulting to a blank string.
WARNING: The DATABASE_HOST variable is not set. Defaulting to a blank string.
WARNING: The DATABASE_NAME variable is not set. Defaulting to a blank string.
WARNING: The DATABASE_USER variable is not set. Defaulting to a blank string.
WARNING: The DATABASE_PASSWORD variable is not set. Defaulting to a blank string.
WARNING: The DATABASE_SSL variable is not set. Defaulting to a blank string.
WARNING: The FLOWISE_SECRETKEY_OVERWRITE variable is not set. Defaulting to a blank string.
WARNING: The LOG_LEVEL variable is not set. Defaulting to a blank string.
Traceback (most recent call last):
File "/home/ec2-user/.local/bin/docker-compose", line 8, in
sys.exit(main())
File "/home/ec2-user/.local/lib/python3.9/site-packages/compose/cli/main.py", line 81, in main
command_func()
File "/home/ec2-user/.local/lib/python3.9/site-packages/compose/cli/main.py", line 200, in perform_command
project = project_from_options('.', options)
File "/home/ec2-user/.local/lib/python3.9/site-packages/compose/cli/command.py", line 60, in project_from_options
return get_project(
File "/home/ec2-user/.local/lib/python3.9/site-packages/compose/cli/command.py", line 152, in get_project
client = get_client(
File "/home/ec2-user/.local/lib/python3.9/site-packages/compose/cli/docker_client.py", line 41, in get_client
client = docker_client(
File "/home/ec2-user/.local/lib/python3.9/site-packages/compose/cli/docker_client.py", line 124, in docker_client
kwargs = kwargs_from_env(environment=environment, ssl_version=tls_version)
TypeError: kwargs_from_env() got an unexpected keyword argument 'ssl_version'
How can I fix this? THank you so much
Beta Was this translation helpful? Give feedback.
All reactions