docker-scripts/linux/advanced/redash/Makefile
2021-11-01 18:29:55 +03:00

31 lines
479 B
Makefile

all: app
app:
make sync
make patch
make build
make push
make clean
sync:
rm -rfv redash-repo
git submodule init
git submodule update --init --recursive
git submodule sync --recursive
patch:
sed -i -e 's/# ldap3==2.2.4/ldap3==2.2.4/g' ./redash-repo/requirements.txt
build:
docker-compose build --compress
push:
docker-compose push
clean:
docker container prune -f
docker image prune -f
docker network prune -f
docker volume prune -f
docker system prune -af