mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
refactored all to dev
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
# SUITE CRM
|
||||
|
||||
proxyport 8080
|
||||
|
||||
|
||||
See documentation: https://hub.docker.com/r/bitnami/suitecrm
|
||||
|
||||
## Gotchas
|
||||
|
||||
1. they sometimes change variable names.
|
||||
|
||||
### imap
|
||||
|
||||
imap is not enabled by default as it's last update was 2011.
|
||||
|
||||
I don't yet have a process of updating this container for imap. Looking for alternative container providers.
|
||||
@@ -0,0 +1,21 @@
|
||||
services:
|
||||
|
||||
suitecrm:
|
||||
image: bitnami/suitecrm:latest
|
||||
environment:
|
||||
- SUITECRM_DATABASE_HOST=mariadb
|
||||
- SUITECRM_DATABASE_PORT_NUMBER=3306
|
||||
- SUITECRM_DATABASE_USER=suitecrm
|
||||
- SUITECRM_DATABASE_PASSWORD=${SUITECRM_DB_PASSWORD}
|
||||
- SUITECRM_DATABASE_NAME=suitecrm_db
|
||||
- ALLOW_EMPTY_PASSWORD=no
|
||||
- SUITECRM_USERNAME=${SUITECRM_USER}
|
||||
- SUITECRM_PASSWORD=${SUITECRM_PASS}
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
- mariadb
|
||||
volumes:
|
||||
- ${VOL_PATH:-./data}/suitecrm_data:/bitnami/suitecrm
|
||||
restart: unless-stopped
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
VOL_PATH=/data
|
||||
|
||||
# SuiteCRM
|
||||
SUITECRM_IMAGE=bitnami/suitecrm:latest
|
||||
SUITECRM_DB_PASSWORD=ThisPasswordNeedsToChange
|
||||
SUITECRM_USER=suiteuser
|
||||
SUITECRM_PASS=sweetpassword
|
||||
Reference in New Issue
Block a user