- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PG (0.01 sec)
-
tests/compose.yml
if su - omm -c "gsql -U omm -d postgres -c \"SELECT 1;\""; then echo "Creating database gorm..."; su - omm -c "gsql -U omm -d postgres -c \"CREATE DATABASE gorm DBCOMPATIBILITY '\'PG\'';\""; echo "Database initialized successfully"; break; fi; echo "Waiting for database to be ready... ($$counter/12)"; sleep 5; counter=$$(($$counter + 1));
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Aug 04 04:07:30 UTC 2025 - 1.9K bytes - Viewed (0) -
.github/workflows/tests.yml
then echo "Creating database gorm..." sql_file='/tmp/create_database.sql' echo "CREATE DATABASE gorm DBCOMPATIBILITY 'PG';" > ${sql_file} docker cp "${sql_file}" "${container_name}":"${sql_file}" docker exec -i ${TTY_FLAG} "${container_name}" bash -c "su - omm -c 'gsql -U omm -f ${sql_file}'"
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 8.9K bytes - Viewed (0)