mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-21 16:12:18 +03:00
736635a94b
We will remove the `twenty-postgres` image that was used for local development and only use `twenty-postgres-pilo` (which we use in prod), bringing the development environment closer to prod and avoiding having to maintain 2 images. Instead of provisioning the super user after the db initialization, we directly rely on the superuser provided by Spilo for simplicity. We also introduce a change that tries to create the right database (`default` or `test`) based on the context. How to test: ``` docker build -t twentycrm/twenty-postgres-spilo:latest -f ./packages/twenty-docker/twenty-postgres-spilo/Dockerfile . docker images --no-trunc | grep twenty-postgres-spilo postgres-on-docker: docker run \ --name twenty_pg \ -e PGUSER_SUPERUSER=twenty \ -e PGPASSWORD_SUPERUSER=twenty \ -e ALLOW_NOSSL=true \ -v twenty_db_data:/home/postgres/pgdata \ -p 5432:5432 \ REPLACE_WITH_IMAGE_ID ```
20 lines
735 B
Makefile
20 lines
735 B
Makefile
postgres-on-docker:
|
|
docker run -d \
|
|
--name twenty_pg \
|
|
-e PGUSER_SUPERUSER=postgres \
|
|
-e PGPASSWORD_SUPERUSER=twenty \
|
|
-e ALLOW_NOSSL=true \
|
|
-v twenty_db_data:/home/postgres/pgdata \
|
|
-p 5432:5432 \
|
|
twentycrm/twenty-postgres-spilo:latest
|
|
@echo "Waiting for PostgreSQL to be ready..."
|
|
@until PGPASSWORD=twenty psql -h localhost -p 5432 -U postgres -d postgres \
|
|
-c 'SELECT pg_is_in_recovery();' 2>/dev/null | grep -q 'f'; do \
|
|
sleep 1; \
|
|
done
|
|
PGPASSWORD=twenty psql -h localhost -p 5432 -U postgres -d postgres \
|
|
-c "CREATE DATABASE \"default\" WITH OWNER postgres;" \
|
|
-c "CREATE DATABASE \"test\" WITH OWNER postgres;"
|
|
|
|
redis-on-docker:
|
|
docker run -d --name twenty_redis -p 6379:6379 redis/redis-stack-server:latest
|