mirror of
https://github.com/standardnotes/server
synced 2026-07-14 09:01:33 -04:00
10 lines
295 B
Bash
Executable File
10 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
sh supervisor/wait-for.sh localhost $AUTH_SERVER_PORT
|
|
sh supervisor/wait-for.sh localhost $FILES_SERVER_PORT
|
|
sh supervisor/wait-for.sh localhost $REVISIONS_SERVER_PORT
|
|
sh supervisor/wait-for.sh localhost $SYNCING_SERVER_PORT
|
|
exec node docker/entrypoint-server.js
|