Skip to content

Commit

Permalink
fix(docker): boltdb database filename
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed May 24, 2024
1 parent 14949ff commit c79f509
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deployment/docker/server/server-wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ case ${SEMAPHORE_DB_DIALECT} in
;;
bolt)
SEMAPHORE_DB_DIALECT_ID=2
SEMAPHORE_DB_HOST=${SEMAPHORE_DB_PATH}/database.boltdb
;;
postgres)
SEMAPHORE_DB_DIALECT_ID=3
Expand All @@ -117,7 +118,7 @@ EOF

if [ "${SEMAPHORE_DB_DIALECT}" = "bolt" ]; then
cat << EOF >> "${SEMAPHORE_TMP_PATH}/config.stdin"
${SEMAPHORE_DB_PATH}/database.boltdb
${SEMAPHORE_DB_HOST}
EOF
else
cat << EOF >> "${SEMAPHORE_TMP_PATH}/config.stdin"
Expand Down

0 comments on commit c79f509

Please sign in to comment.