chore(): docker-compose

This commit is contained in:
2025-08-27 21:29:52 +02:00
parent 75dfeaffd2
commit 5552258f20
9 changed files with 89 additions and 62 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
invoiceapi:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
depends_on:
- gotenberg
environment:
- PDF_HOSTNAME=http://gotenberg:3000
volumes:
- ./config.json:/config.json
develop:
watch:
- action: rebuild
path: .
ignore:
- .git
gotenberg:
image: gotenberg/gotenberg:8
restart: unless-stopped