1
0
mirror of https://github.com/MaxenceG2M/github-release-notifier.git synced 2025-12-08 13:53:24 +00:00
Files
github-release-notifier/Justfile
Maxence G. de Montauzan 74e6488044 Dockerfile & docker compose
Adapt configuration for tests purposes
Justfile to simplificate flow
2023-09-11 00:44:13 +02:00

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