1
0
mirror of https://github.com/MaxenceG2M/github-release-notifier.git synced 2025-12-09 14:15:35 +00:00

Dockerfile & docker compose

Adapt configuration for tests purposes
Justfile to simplificate flow
This commit is contained in:
2023-09-07 00:37:59 +02:00
parent f3380139ed
commit 74e6488044
4 changed files with 44 additions and 2 deletions

17
Justfile Normal file
View File

@@ -0,0 +1,17 @@
# 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