mirror of
https://github.com/MaxenceG2M/github-release-notifier.git
synced 2025-12-08 13:53:24 +00:00
Adapt configuration for tests purposes Justfile to simplificate flow
18 lines
228 B
Makefile
18 lines
228 B
Makefile
# https://github.com/casey/just
|
|
|
|
up: build
|
|
docker compose up -d
|
|
docker compose logs
|
|
|
|
build:
|
|
docker compose build
|
|
|
|
rebuild: down
|
|
docker compose build
|
|
|
|
down:
|
|
docker compose down
|
|
|
|
force-build:
|
|
docker compose build --no-cache
|