Update Monica

This commit is contained in:
whitney 2024-05-22 15:02:02 -07:00
parent 8c2769833f
commit 9f1ee8a896
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,12 @@
# Monica # Monica
Reference: https://hub.docker.com/_/monica Personal CRM manager.
https://github.com/monicahq/monica/blob/4.x/docs/installation/providers/docker.md
### Installation ### Installation
In configuration, make sure to set `APP_ENV=production` and `APP_DEBUG=false` or the UI will be in html only mode, not serving js/css.
`docker-compose down && docker system prune && docker-compose up -d`

View File

@ -18,6 +18,8 @@ services:
- DB_HOST=[[DATABASE_HOST]] - DB_HOST=[[DATABASE_HOST]]
- DB_USERNAME=[[DATABASE_USERNAME]] - DB_USERNAME=[[DATABASE_USERNAME]]
- DB_PASSWORD=[[DATABASE_PASSWORD]] - DB_PASSWORD=[[DATABASE_PASSWORD]]
- APP_ENV=production
- APP_DEBUG=false
volumes: volumes:
- /pwspool/software/monica/app:/var/www/html/storage - /pwspool/software/monica/app:/var/www/html/storage
restart: always restart: always