58 lines
2.6 KiB
Makefile
58 lines
2.6 KiB
Makefile
DOCKER_IMAGE := docker.io/kanboard/kanboard
|
|
DOCKER_TAG := main
|
|
VERSION := $(shell git rev-parse --short HEAD)
|
|
|
|
.PHONY: archive test-sqlite test-mysql test-postgres sql \
|
|
docker-image docker-images docker-run docker-sh
|
|
|
|
archive:
|
|
@ echo "Build archive: version=$(VERSION)"
|
|
@ git archive --format=zip --prefix=kanboard/ $(VERSION) -o kanboard-$(VERSION).zip
|
|
|
|
test-sqlite:
|
|
@ ./vendor/bin/phpunit -c tests/units.sqlite.xml
|
|
|
|
test-mysql:
|
|
@ ./vendor/bin/phpunit -c tests/units.mysql.xml
|
|
|
|
test-postgres:
|
|
@ ./vendor/bin/phpunit -c tests/units.postgres.xml
|
|
|
|
sql:
|
|
@ pg_dump --schema-only --no-owner --no-privileges --quote-all-identifiers -n public --file app/Schema/Sql/postgres.sql kanboard
|
|
@ pg_dump -d kanboard --column-inserts --data-only --table settings >> app/Schema/Sql/postgres.sql
|
|
@ pg_dump -d kanboard --column-inserts --data-only --table links >> app/Schema/Sql/postgres.sql
|
|
|
|
@ mysqldump -uroot --quote-names --no-create-db --skip-comments --no-data --single-transaction kanboard | sed 's/ AUTO_INCREMENT=[0-9]*//g' > app/Schema/Sql/mysql.sql
|
|
@ mysqldump -uroot --quote-names --no-create-info --skip-comments --no-set-names kanboard settings >> app/Schema/Sql/mysql.sql
|
|
@ mysqldump -uroot --quote-names --no-create-info --skip-comments --no-set-names kanboard links >> app/Schema/Sql/mysql.sql
|
|
|
|
@ let password_hash=`php -r "echo password_hash('admin', PASSWORD_DEFAULT);"` ;\
|
|
echo "INSERT INTO users (username, password, role) VALUES ('admin', '$$password_hash', 'app-admin');" >> app/Schema/Sql/mysql.sql ;\
|
|
echo "INSERT INTO public.users (username, password, role) VALUES ('admin', '$$password_hash', 'app-admin');" >> app/Schema/Sql/postgres.sql
|
|
|
|
@ let mysql_version=`echo 'select version from schema_version;' | mysql -N -uroot kanboard` ;\
|
|
echo "INSERT INTO schema_version VALUES ('$$mysql_version');" >> app/Schema/Sql/mysql.sql
|
|
|
|
@ let pg_version=`psql -U postgres -A -c 'copy(select version from schema_version) to stdout;' kanboard` ;\
|
|
echo "INSERT INTO public.schema_version VALUES ('$$pg_version');" >> app/Schema/Sql/postgres.sql
|
|
|
|
@ grep -v "SET idle_in_transaction_session_timeout = 0;" app/Schema/Sql/postgres.sql > temp && mv temp app/Schema/Sql/postgres.sql
|
|
|
|
docker-image:
|
|
@ docker build --build-arg VERSION=main.$(VERSION) -t $(DOCKER_IMAGE):$(DOCKER_TAG) .
|
|
|
|
docker-images:
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 \
|
|
--file Dockerfile \
|
|
--build-arg VERSION=main.$(VERSION) \
|
|
--tag $(DOCKER_IMAGE):$(VERSION) \
|
|
.
|
|
|
|
docker-run:
|
|
@ docker run --rm --name=kanboard -p 80:80 -p 443:443 $(DOCKER_IMAGE):$(DOCKER_TAG)
|
|
|
|
docker-sh:
|
|
@ docker exec -ti kanboard bash
|