mirror of
https://github.com/thilo-behnke/wasm-pong.git
synced 2026-02-14 14:39:51 +00:00
13 lines
166 B
Bash
Executable File
13 lines
166 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd server || exit
|
|
|
|
source .env
|
|
|
|
docker-compose down
|
|
docker-compose up -d --build --force-recreate kafka zookeeper nginx
|
|
|
|
./init-kafka.sh
|