We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The two brackets are in the wrong position, which causes the installation to fail. Here is my modified diff:
${PG_DATABASE_HOST:-db:5432} ----------------Two places were changed to this----> ${PG_DATABASE_HOST:-db}:5432
--- a/packages/twenty-docker/docker-compose.yml +++ b/packages/twenty-docker/docker-compose.yml @@ -1,4 +1,5 @@ -name: twenty +version: "3.9" +# name: twenty services: change-vol-ownership: @@ -21,7 +22,7 @@ services: - "3000:3000" environment: PORT: 3000 - PG_DATABASE_URL: postgres://${PGUSER_SUPERUSER:-postgres}:${PGPASSWORD_SUPERUSER:-postgres}@${PG_DATABASE_HOST:-db:5432}/default + PG_DATABASE_URL: postgres://${PGUSER_SUPERUSER:-postgres}:${PGPASSWORD_SUPERUSER:-postgres}@${PG_DATABASE_HOST:-db}:5432/default SERVER_URL: ${SERVER_URL} REDIS_URL: ${REDIS_URL:-redis://redis:6379} @@ -47,7 +48,7 @@ services: image: twentycrm/twenty:${TAG:-latest} command: ["yarn", "worker:prod"] environment: - PG_DATABASE_URL: postgres://${PGUSER_SUPERUSER:-postgres}:${PGPASSWORD_SUPERUSER:-postgres}@${PG_DATABASE_HOST:-db:5432}/default + PG_DATABASE_URL: postgres://${PGUSER_SUPERUSER:-postgres}:${PGPASSWORD_SUPERUSER:-postgres}@${PG_DATABASE_HOST:-db}:5432/default
thanks
The text was updated successfully, but these errors were encountered:
Yes great point thanks! Would you mind raising a PR?
Sorry, something went wrong.
xoomp
No branches or pull requests
Bug Description
The two brackets are in the wrong position, which causes the installation to fail. Here is my modified diff:
${PG_DATABASE_HOST:-db:5432}
----------------Two places were changed to this---->
${PG_DATABASE_HOST:-db}:5432
thanks
The text was updated successfully, but these errors were encountered: