mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-21 07:49:34 +01:00
18 lines
291 B
Bash
Executable File
18 lines
291 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cat <<EOF
|
|
{
|
|
"postgres": {
|
|
"host": "postgres:5432",
|
|
"user": "semaphore",
|
|
"pass": "semaphore",
|
|
"name": "semaphore",
|
|
"options": {
|
|
"sslmode": "disable"
|
|
}
|
|
},
|
|
"dialect": "postgres",
|
|
"access_key_encryption": "${SEMAPHORE_ACCESS_KEY_ENCRYPTION}"
|
|
}
|
|
EOF
|