mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-04-30 20:36:47 -05:00
18 lines
542 B
Bash
Executable File
18 lines
542 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -eu
|
|
git_base=$(git rev-parse --show-toplevel)
|
|
. "$git_base/environment/system.local.env"
|
|
. "$git_base/environment/friends.env"
|
|
. "$git_base/environment/friends.local.env"
|
|
|
|
docker compose up -d account
|
|
|
|
docker compose exec account node /app/dist/create-server-in-database.js reset
|
|
|
|
docker compose exec account node /app/dist/create-server-in-database.js nex \
|
|
"Friend List" "00003200" "0005001010001C00" "$COMPUTER_IP" \
|
|
"$PN_FRIENDS_AUTHENTICATION_SERVER_PORT" "prod" "$PN_FRIENDS_CONFIG_AES_KEY"
|
|
|
|
docker compose down
|