mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
refactored all to dev
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user