2023-12-13 00:38:40 +03:00
|
|
|
postgres-on-docker:
|
2024-11-15 11:38:30 +03:00
|
|
|
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 \
|
2024-10-16 15:32:58 +03:00
|
|
|
-p 5432:5432 \
|
2024-11-15 11:38:30 +03:00
|
|
|
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;"
|
2024-10-16 15:32:58 +03:00
|
|
|
|
|
|
|
redis-on-docker:
|
|
|
|
docker run -d --name twenty_redis -p 6379:6379 redis/redis-stack-server:latest
|