mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-08 16:43:47 +01:00
9 lines
181 B
Bash
Executable File
9 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Clear worker queue
|
|
|
|
set -e
|
|
. "${BASH_SOURCE%/*}/common.sh"
|
|
|
|
docker exec -it "$(container app)" sh -c "FLASK_CONFIG=../config.cfg celery -A app.tasks.celery purge -f"
|