Moved to _dev

This commit is contained in:
2025-09-20 16:11:47 +02:00
parent fb1a8753b7
commit b2ba11fcd3
1670 changed files with 224899 additions and 0 deletions

40
invoiceplane/compose.yaml Normal file
View File

@@ -0,0 +1,40 @@
volumes:
data:
name: invpln_data
db:
name: invpln_db
services:
invoiceplane:
container_name: invoiceplane
image: mhzawadi/invoiceplane:latest
volumes:
- data:/var/www/html/uploads
ports :
- 49080:80
- 49443:443
environment:
- TZ=TZ=Europe/Paris
- MYSQL_HOST=db
- MYSQL_USER=InvoicePlane
- MYSQL_PASSWORD=invoiceplane
- MYSQL_DB=InvoicePlane
- IP_URL=https://gestion.jme69.duckdns.org
- DISABLE_SETUP=true
db:
image: mariadb
container_name: invpln_mariadb
volumes:
- db:/var/lib/mysql
ports:
- 3306
networks:
- backend
environment:
- PUID=1000
- PGID=1000
- MYSQL_ROOT_PASSWORD=transatlantique
- MYSQL_DATABASE=InvoicePlane
- MYSQL_USER=InvoicePlane
- MYSQL_PASSWORD=invoiceplane