mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-08 16:43:47 +01:00
15 lines
326 B
Bash
Executable File
15 lines
326 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Call from a docker host to rebuild and update running instances of CDB.
|
|
# This is for production use. See reload.sh for debug mode hot/live reloading.
|
|
#
|
|
|
|
set -e
|
|
|
|
docker-compose build app
|
|
docker-compose build worker
|
|
|
|
docker-compose up --no-deps -d app
|
|
docker-compose up --no-deps --scale worker=4 -d worker
|