Skip to content

Commit

Permalink
fix(docker): fix docker startup
Browse files Browse the repository at this point in the history
Fixes: #689
  • Loading branch information
silvestre authored and peterhaochen47 committed Feb 8, 2024
1 parent 5b13a28 commit 50931fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/start_server.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -euo pipefail

application_configs="$(find /tmp/config -mindepth 1 -maxdepth 1 2>/dev/null | paste -sd ',' -)"
application_configs="$(find /etc/config -mindepth 1 -maxdepth 1 2>/dev/null | paste -sd ',' -)"
declare -r application_configs

"java" \
Expand Down

0 comments on commit 50931fb

Please sign in to comment.