Official Docker image for TecArt CRM, intended only for development, testing and integration.
50K+
Official Docker images for TecArt CRM, intended only for development and testing. This image allows quick setup of a CRM environment for local development, integration tests, and debugging.
This Docker image is not suitable for production deployments. It is provided for development and test environments only. Use in live environments is not supported or secured.
docker run -d --name tecart-crm-dev -p 8080:80 tecart/crm_v54:prod
Access
root / root1. Create the project folder structure:
mkdir -p tecart-crm/data/crm tecart-crm/data/postgresql
cd tecart-crm
Your folder should look like this:
tecart-crm/
├── docker-compose.yml ← you will create this file
└── data/
├── crm/ ← CRM data will be stored here
└── postgresql/ ← Database files will be stored here
2. Create the docker-compose.yml file in the tecart-crm/ folder:
services:
tecart-crm:
image: tecart/crm_v54:prod
container_name: tecart-crm-dev
ports:
- "8080:80"
volumes:
- ./data/crm:/data/crm
- ./data/postgresql:/var/lib/postgresql/14/main
environment:
- TZ=Europe/Berlin
restart: unless-stopped
3. Start the container:
docker compose up -d
root password. It appears in the container logs and is saved to ./data/crm/initial-root-password.txt.root and the generated password (no default credentials).docker exec -it tecart-crm-dev /var/www/crm/tools/pw_reset root "NewStrongPassword1!"
data/crm and data/postgresql directories before restarting the container.addon_dev: Development version for addons, updated regularlyaddon_dev_postgresql: Development version with PostgreSQL Databaseaddon_dev_mariadb: Development version with MariaDB Databaselatest: Demo version with PostgreSQL DatabaseThis image is distributed under the TecArt Software License. By using this image, you agree to the development-only usage terms.
Content type
Image
Digest
sha256:15606ec97…
Size
1.5 GB
Last updated
12 minutes ago
docker pull tecart/crm_v54:addon_dev