Skip to content

Commit

Permalink
chore: Add makefile for local testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rfsbraz committed Nov 24, 2023
1 parent edb021c commit 1557261
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.PHONY: build run clean test

build:
docker-compose build

run: build
docker-compose up

clean:
docker-compose down

test:
pytest
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
version: "3.9"
services:
deleterr:
image: ghcr.io/rfsbraz/deleterr:latest
build: .
container_name: deleterr
environment:
LOG_LEVEL: INFO
LOG_LEVEL: DEBUG
volumes:
- ./config:/config
- ./logs:/config/logs

0 comments on commit 1557261

Please sign in to comment.