From eb636ddc2127fdd451860e9e481a192fa59293d8 Mon Sep 17 00:00:00 2001 From: BhasherBEL Date: Wed, 27 Dec 2023 00:36:38 +0100 Subject: [PATCH] Fix InvoicePlane --- bxl-shp/apps/docker-compose.invoice.yaml | 34 ++++++++++++++---------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/bxl-shp/apps/docker-compose.invoice.yaml b/bxl-shp/apps/docker-compose.invoice.yaml index a1167e4..28fa6c1 100644 --- a/bxl-shp/apps/docker-compose.invoice.yaml +++ b/bxl-shp/apps/docker-compose.invoice.yaml @@ -4,17 +4,14 @@ services: image: mhzawadi/invoiceplane:latest restart: unless-stopped volumes: - - $DATA/invoiceplane/uploads:/var/www/html/uploads - - $DATA/invoiceplane/ipconfig.php:/var/www/html/ipconfig.php - /etc/localtime:/etc/localtime:ro - #command: sh -c "apk add php7-mbstring php7-iconv php7-json gd && nginx -g 'daemon off;'" + - $DATA/invoiceplane/uploads:/var/www/html/uploads + - type: bind + source: $DATA/invoiceplane/ipconfig.php + target: /var/www/html/ipconfig.php environment: + - TZ=Europe/Paris - IP_URL=https://invoice.bhasher.com - #- MYSQL_HOST=mariadb - #- MYSQL_USER=root - #- MYSQL_PASSWORD=${MARIADB_ROOT} - #- MYSQL_DB=InvoicePlane - #- DISABLE_SETUP=false labels: - "traefik.enable=true" - "traefik.http.routers.invoice.rule=Host(`invoice.bhasher.com`)" @@ -22,14 +19,23 @@ services: - "traefik.http.routers.invoice.tls=true" - "traefik.http.routers.invoice.tls.certresolver=http" - "traefik.http.routers.invoice.entrypoints=internalsecure,externalsecure" - #- "com.centurylinklabs.watchtower.enable=true" + - "com.centurylinklabs.watchtower.enable=true" networks: - external - - storage + - invoice + + invoiceplane-db: + container_name: invoiceplane-db + image: mariadb:10.4.10 + volumes: + - $DATA/invoiceplane/mariadb:/var/lib/mysql + environment: + - MYSQL_ROOT_PASSWORD=${MARIADB_ROOT} + - MYSQL_DATABASE=invoiceplane + - MYSQL_USER=invoiceplane + - MYSQL_PASSWORD=${MARIADB_ROOT} + networks: + - invoice networks: invoice: - external: - external: true - storage: - external: true