mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-09 06:24:48 +00:00
* WIP(gotenberg): add pdf generation abstraction and UI * feat(pdf): settings validate(clien+server) & save * fix(gotenberg): Use correct default papersize chore(gotengberg): Remove unused GOTENBERG_MARGINS env from .env * style(gotenberg): fix linter/styling issues * fix(pdf): use pdf config policy * fix: revert accidental capitalization in mail config vue * Update composer, remove whitespace typo * Fix small typos * fix cookie/env issue * Add gotenberg to .dev, move admin menu item up
60 lines
1.2 KiB
YAML
60 lines
1.2 KiB
YAML
services:
|
|
php-fpm:
|
|
container_name: invoiceshelf-dev-php
|
|
build:
|
|
context: ./php
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- UID=${USRID:-1000}
|
|
- GID=${GRPID:-1000}
|
|
volumes:
|
|
- ../:/home/invoiceshelf/app
|
|
ports:
|
|
- 5173:5173
|
|
networks:
|
|
- invoiceshelf-dev
|
|
|
|
nginx:
|
|
container_name: invoiceshelf-dev-nginx
|
|
image: nginx:stable
|
|
ports:
|
|
- '80:80'
|
|
volumes:
|
|
- ./nginx/conf.d/dev.conf:/etc/nginx/conf.d/dev.conf
|
|
- ../:/home/invoiceshelf/app
|
|
networks:
|
|
- invoiceshelf-dev
|
|
|
|
adminer:
|
|
container_name: invoiceshelf-dev-adminer
|
|
build:
|
|
context: ./adminer
|
|
dockerfile: Dockerfile
|
|
environment:
|
|
ADMINER_PLUGINS: tables-filter
|
|
ADMINER_DESIGN: konya
|
|
volumes:
|
|
- ../database:/database
|
|
ports:
|
|
- '8080:8080'
|
|
networks:
|
|
- invoiceshelf-dev
|
|
|
|
mail:
|
|
container_name: invoiceshelf-dev-mailpit
|
|
image: axllent/mailpit:latest
|
|
restart: always
|
|
ports:
|
|
- 1025:1025
|
|
- 8025:8025
|
|
networks:
|
|
- invoiceshelf-dev
|
|
|
|
pdf:
|
|
image: gotenberg/gotenberg:8
|
|
networks:
|
|
- invoiceshelf-dev
|
|
|
|
networks:
|
|
invoiceshelf-dev:
|