Run Perfex CRM with Docker. It is a self hosted Customer Relationship Management software solution.
305
This image will allow you to host Perfex CRM using Docker. It's based on Apache2 with php-7.4.32. All required modules are baked into the image so you only have to specify where the perfex installation is located. By default it exposes port 80. Read more about Perfex CRM.
version: "3.3"
services:
web:
image: chrschou/perfex:1.0.0
networks:
- web
- internal
restart: always
volumes:
- /perfex-crm-path-on-your-server:/var/www/html/
db:
image: mysql:latest
restart: always
environment:
MYSQL_ROOT_PASSWORD: "${MYSQL_ROOT_PASSWORD}"
MYSQL_DATABASE: portal
MYSQL_USER: portal
MYSQL_PASSWORD: "${MYSQL_PASSWORD}"
cap_add:
- SYS_NICE
volumes:
- db_data:/var/lib/mysql
networks:
- internal
phpmyadmin:
image: phpmyadmin:latest
ports:
- 8091:80
environment:
PMA_HOST: db
PMA_PASSWORD: ${MYSQL_ROOT_PASSWORD}
UPLOAD_LIMIT: 24M
restart: unless-stopped
networks:
- web
- internal
networks:
web:
external: true
internal:
external: false
volumes:
db_data:
external: false
Content type
Image
Digest
sha256:e6dedc6e6…
Size
174.3 MB
Last updated
almost 4 years ago
docker pull chrschou/perfex:1.0.0