mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 05:26:59 +00:00
13 lines
274 B
Bash
13 lines
274 B
Bash
#!/bin/bash
|
|
export $(egrep -v '^#' .env | xargs)
|
|
echo "Running Revolt in detached mode."
|
|
docker run \
|
|
-d \
|
|
--name revolt \
|
|
-p 8000:8000 \
|
|
-p 9000:9000 \
|
|
-e "DB_URI=$DB_URI" \
|
|
-e "PUBLIC_URI=$PUBLIC_URI" \
|
|
-e "PORTAL_URL=$PORTAL_URI" \
|
|
revolt
|