Docker Compose
Requirements
- Docker
- Docker Compose
- Linux Server
- Don’t support Docker Desktop for Windows and Mac.
- Minimum: 4 CPU cores, 16 GB memory, 100 GB disk space.
Quick Start
Download
Download a specific version from Dify Enterprise repository.
Using wget:
Using curl:
Installation
-
Extract the contents of the downloaded file to your deployment directory.
-
Start docker compose.
Upgrade From Community Edition
-
Create the enterprise database (make sure your community version is running).
Tip: You may need to adjust the container name based on your running containers. Use
docker container ls
to find the name of thedb
service. -
Shut down the community version.
-
Backup your data and settings (you may need to use
sudo
). -
Delete all files and folders from the Community version, except for the
backup.tgz
anddify-docker-compose-<version>.tgz
. -
Extract the contents of the downloaded file to your deployment directory.
-
Restore your backup by deleting the
volumes
folder.Then run:
-
If you have custom configurations (e.g.,
docker-compose.yaml
,ssrf_proxy/squid.conf
, ornginx/conf.d/default.conf
), update the corresponding files with your changes. -
Start docker compose.
Upgrade From Previous Enterprise Edition
-
Backup your data and settings (you may need to use sudo).
-
Delete all files and folders from the Community version, except for the
backup.tgz
anddify-docker-compose-<version>.tgz
. -
Extract the contents of the downloaded file to your deployment directory.
-
Restore your backup by deleting the
volumes
folder.Then run:
-
If you have custom configurations (e.g.,
docker-compose.yaml
,ssrf_proxy/squid.conf
, ornginx/conf.d/default.conf
), update the corresponding files with your changes. -
Start docker compose:
Advanced Configuration
How to Access Dify Enterprise
Get the IP address of your server and change the hosts file on your local machine to point the domain to the IP address.
Domain Requirements
Dify Enterprise requires 5 domains to be set up. The domains are:
- Console: console.dify.local
- Services API: api.dify.local
- APP: app.dify.local
- Files: upload.dify.local
- Enterprise Dashboard: enterprise.dify.local
To change this, add the relevant configurations to the .env
file in your deployment directory.
Persistence Storage
By defualt, Enterprise Edition uses local storage. To change this, add the relevant configurations in the .env
file in your deployment directory. For example, to use AWS S3:
For configurations for other storage options, refer to the File Storage Configuration.
Postgres Database
To change this, add the relevant configurations to the .env
file in your deployment directory.
For configurations for other databases, refer to the Database Configuration.
Redis Database
To change this, add the relevant configurations to the .env
file in your deployment directory.
For configurations for other databases, refer to the Redis Configuration.
Vector Database
By defualt, Enterprise Edition uses Weaviate as vector database. To change this, add the relevant configurations to the .env
file in your deployment directory. For example, to use Qdrant:
For configurations for other vector databases, refer to the Vector Database Configuration.
Additional Configuration
For additional configuration options, refer to the Environment Variables Explanation.