mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-06 03:06:04 +00:00
* fix: mise start + missing docker image Signed-off-by: Damocles078 <hellodamocles078@gmail.com> * fix: bump livekit version Signed-off-by: Damocles <106018783+Damocles078@users.noreply.github.com> --------- Signed-off-by: Damocles078 <hellodamocles078@gmail.com> Signed-off-by: Tom <iamtomahawkx@gmail.com> Signed-off-by: Damocles <106018783+Damocles078@users.noreply.github.com> Co-authored-by: Tom <iamtomahawkx@gmail.com>
14 lines
250 B
Bash
Executable File
14 lines
250 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#MISE description="Start Docker containers"
|
|
set -e
|
|
|
|
docker compose up -d
|
|
|
|
docker run \
|
|
--network=${DOCKER_NETWORK_NAME} \
|
|
--name wait \
|
|
--rm dokku/wait -c \
|
|
rabbit:${RABBIT_PORT},\
|
|
database:${DATABASE_PORT},\
|
|
redis:${REDIS_PORT}
|