mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-22 19:41:53 +03:00
39a9cd0d51
Fixes #8630
20 lines
703 B
Makefile
20 lines
703 B
Makefile
postgres-on-docker:
|
|
docker run -d \
|
|
--name twenty_pg \
|
|
-e PGUSER_SUPERUSER=postgres \
|
|
-e PGPASSWORD_SUPERUSER=postgres \
|
|
-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 docker exec twenty_pg psql -U postgres -d postgres \
|
|
-c 'SELECT pg_is_in_recovery();' 2>/dev/null | grep -q 'f'; do \
|
|
sleep 1; \
|
|
done
|
|
docker exec twenty_pg psql -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
|