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
I want to try out OpenBlocks.
I have setup Docker but when I checked the yml file I observed it installs MongoDB. But instead of MongoDB I want to use PostgreSQL and MySQL.
How to add these two RDBMS and build the docker image?
The text was updated successfully, but these errors were encountered:
Have a look at ferretdb. It is a layer on top of Postgres written in Go which is a dead replacement for MongoDB.
version: "3" services: ferretdb: image: ghcr.io/ferretdb/ferretdb restart: on-failure ports: - 27017:27017 expose: - 27017 environment: - FERRETDB_POSTGRESQL_URL=postgres://postgres:5432/ferretdb - FERRETDB_HANDLER=pg networks: - databases networks: databases: external: name: databases
Sorry, something went wrong.
No branches or pull requests
I want to try out OpenBlocks.
I have setup Docker but when I checked the yml file I observed it installs MongoDB. But instead of MongoDB I want to use PostgreSQL and MySQL.
How to add these two RDBMS and build the docker image?
The text was updated successfully, but these errors were encountered: