41 lines
855 B
YAML
41 lines
855 B
YAML
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
|