Update Financial_Containers/invoiceshelf/compose.yaml

This commit is contained in:
2026-05-19 22:12:06 +00:00
parent db4d489c27
commit b0d96feae8
+19 -15
View File
@@ -11,44 +11,46 @@ services:
- 5432:5432 - 5432:5432
volumes: volumes:
- /srv/docker/invoiceshelf/postgres:/var/lib/postgresql/data - /srv/docker/invoiceshelf/postgres:/var/lib/postgresql/data
env_file:
- .env
environment: environment:
- POSTGRES_PASSWORD= - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- DB_PASSWORD=${DB_PASSWORD}
- POSTGRES_USER=invoiceshelf - POSTGRES_USER=invoiceshelf
- POSTGRES_DB=invoiceshelf - POSTGRES_DB=invoiceshelf
networks:
- invoiceshelf
restart: unless-stopped restart: unless-stopped
invoiceshelf: invoiceshelf:
image: invoiceshelf/invoiceshelf:nightly image: invoiceshelf/invoiceshelf:latest
container_name: invoiceshelf container_name: invoiceshelf
ports: #ports:
- 8092:80 # - 8092:80
volumes: volumes:
- /srv/docker/invoiceshelf/invoiceshelf_pgsql/data:/data - /srv/docker/invoiceshelf/invoiceshelf_pgsql/data:/data
- /srv/docker/invoiceshelf/invoiceshelf_pgsql/conf:/conf - /srv/docker/invoiceshelf/invoiceshelf_pgsql/conf:/conf
networks: env_file:
- invoiceshelf - .env
environment: environment:
- PHP_TZ=America/Chicago - PHP_TZ=America/Chicago
- TIMEZONE=America/Chicago - TIMEZONE=America/Chicago
- APP_NAME=Laravel - APP_NAME=InvoiceShelf
- APP_ENV=local - APP_ENV=production
- APP_DEBUG=true - APP_DEBUG=true
- APP_URL=http://localhost:8092 - APP_URL=https://${SERVICE_NAME}.${DOMAIN_NAME}
- DB_CONNECTION=pgsql - DB_CONNECTION=pgsql
- DB_HOST=invoiceshelf_db - DB_HOST=invoiceshelf_db
- DB_PORT=5432 - DB_PORT=5432
- DB_DATABASE=invoiceshelf - DB_DATABASE=invoiceshelf
- DB_USERNAME=invoiceshelf - DB_USERNAME=invoiceshelf
- DB_PASSWORD= - DB_PASSWORD=${DB_PASSWORD}
- CACHE_STORE=file - CACHE_STORE=file
- SESSION_DRIVER=file - SESSION_DRIVER=file
- SESSION_LIFETIME=120 - SESSION_LIFETIME=120
- SESSION_ENCRYPT=false - SESSION_ENCRYPT=false
- SESSION_PATH=/ - SESSION_PATH=/
- SESSION_DOMAIN=localhost - SESSION_DOMAIN=${SERVICE_NAME}.${DOMAIN_NAME}
- SANCTUM_STATEFUL_DOMAINS=localhost:8092 - SANCTUM_STATEFUL_DOMAINS=${SERVICE_NAME}.${DOMAIN_NAME}
- STARTUP_DELAY=10 - STARTUP_DELAY=10
- TRUSTED_PROXIES=*
#- MAIL_DRIVER=smtp #- MAIL_DRIVER=smtp
#- MAIL_HOST=smtp.mailtrap.io #- MAIL_HOST=smtp.mailtrap.io
#- MAIL_PORT=2525 #- MAIL_PORT=2525
@@ -61,4 +63,6 @@ services:
- invoiceshelf_db - invoiceshelf_db
networks: networks:
invoiceshelf: default:
external: true
name: nginx