docker-scripts/linux/ecosystem/torrust-index/Makefile

37 lines
593 B
Makefile
Raw Normal View History

2024-07-18 16:29:06 +03:00
PIP_BREAK_SYSTEM_PACKAGES=1
all: app
app:
make build
make deploy
make clean
build:
2024-08-10 21:36:22 +03:00
kaniko-wrapper --version
2024-06-24 01:15:44 +03:00
dry:
make dry-run
test:
make dry-run
dry-run:
2024-08-10 21:36:22 +03:00
kaniko-wrapper --kaniko-image gcr.io/kaniko-project/executor:v1.23.2-debug --dry-run
2024-06-24 01:15:44 +03:00
build-compose:
docker-compose build --compress --parallel --progress plain
deploy:
2024-08-10 21:36:22 +03:00
kaniko-wrapper --deploy --kaniko-image gcr.io/kaniko-project/executor:v1.23.2-debug
2024-06-24 01:15:44 +03:00
deploy-compose:
docker-compose push
clean:
docker container prune -f
docker image prune -f
docker network prune -f
docker volume prune -f
docker system prune -af