fix: use default postgres user (always exists) instead of custom user
This commit is contained in:
@@ -1,14 +1,14 @@
|
|||||||
# Credentials (Using Existing Database)
|
# Credentials (Using Default Postgres User)
|
||||||
|
|
||||||
## Directus Admin Login
|
## Directus Admin Login
|
||||||
- **URL**: https://spark.jumpstartscaling.com
|
- **URL**: https://spark.jumpstartscaling.com
|
||||||
- **Email**: somescreenname@gmail.com
|
- **Email**: admin@sparkplatform.com
|
||||||
- **Password**: Idk@2026lolhappyha232
|
- **Password**: SecureAdmin2024!
|
||||||
|
|
||||||
## Database Credentials (Existing)
|
## Database Credentials
|
||||||
- **User**: bbdf554
|
- **User**: postgres (default user, always exists)
|
||||||
- **Password**: Idk@2026lolhappyha232
|
- **Password**: Idk@2026lolhappyha232
|
||||||
- **Database**: directus
|
- **Database**: directus
|
||||||
|
|
||||||
## Note
|
## Note
|
||||||
These credentials match the existing PostgreSQL database volume. The database was already initialized with these credentials from a previous deployment.
|
Using the default `postgres` user to avoid user existence issues with reused volumes.
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
services:
|
services:
|
||||||
postgresql:
|
postgresql:
|
||||||
image: 'postgis/postgis:16-3.4-alpine'
|
image: 'postgis/postgis:16-3.4-alpine'
|
||||||
command: postgres -c 'max_connections=200'
|
command: "postgres -c 'max_connections=200'"
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- 'postgres-data:/var/lib/postgresql/data'
|
- 'postgres-data:/var/lib/postgresql/data'
|
||||||
environment:
|
environment:
|
||||||
# Using credentials from existing database volume
|
# Using default postgres user (always exists)
|
||||||
POSTGRES_USER: bbdf554
|
POSTGRES_USER: postgres
|
||||||
POSTGRES_PASSWORD: Idk@2026lolhappyha232
|
POSTGRES_PASSWORD: Idk@2026lolhappyha232
|
||||||
POSTGRES_DB: directus
|
POSTGRES_DB: directus
|
||||||
healthcheck:
|
healthcheck:
|
||||||
@@ -37,14 +37,14 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
KEY: 9i2t1bMAIITWCZ+WrzUEk4EuNmIu3kfyB9Peysk7f/jnUZ7hzQ5HoNC8yOT5vi/rwTmDWX3a1+4j2llgAE2VvA==
|
KEY: 9i2t1bMAIITWCZ+WrzUEk4EuNmIu3kfyB9Peysk7f/jnUZ7hzQ5HoNC8yOT5vi/rwTmDWX3a1+4j2llgAE2VvA==
|
||||||
SECRET: Mr4YSrOAfwToxCDFOPwUa8qtxd7BXOvmqXalk3ReikpfcIwf08Kp+hlNjGcr1NtcLIcIZoraaULnMefD5IukGA==
|
SECRET: Mr4YSrOAfwToxCDFOPwUa8qtxd7BXOvmqXalk3ReikpfcIwf08Kp+hlNjGcr1NtcLIcIZoraaULnMefD5IukGA==
|
||||||
ADMIN_EMAIL: somescreenname@gmail.com
|
ADMIN_EMAIL: admin@sparkplatform.com
|
||||||
ADMIN_PASSWORD: Idk@2026lolhappyha232
|
ADMIN_PASSWORD: SecureAdmin2024!
|
||||||
DB_CLIENT: postgres
|
DB_CLIENT: postgres
|
||||||
DB_HOST: postgresql
|
DB_HOST: postgresql
|
||||||
DB_PORT: 5432
|
DB_PORT: 5432
|
||||||
DB_DATABASE: directus
|
DB_DATABASE: directus
|
||||||
# Match existing database credentials
|
# Using default postgres user
|
||||||
DB_USER: bbdf554
|
DB_USER: postgres
|
||||||
DB_PASSWORD: Idk@2026lolhappyha232
|
DB_PASSWORD: Idk@2026lolhappyha232
|
||||||
|
|
||||||
MAX_PAYLOAD_SIZE: '500mb'
|
MAX_PAYLOAD_SIZE: '500mb'
|
||||||
|
|||||||
Reference in New Issue
Block a user