mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05: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
|