Thank you for your quick response Tcaruth.
I apologize for not providing all the information. In my eagerness to resolve the issue, I didn’t follow the correct steps.
Here are the steps I followed to install dotCMS:
I downloaded the docker-compose.yml file from \https://dev.dotcms.com/docs/current-releases
And I’m using it in Portainer, a docker manager.
I only commented out the line #JAVA_TOOL_OPTIONS: ‘-XX:UseSVE=0’ because it causes an error and prevents the VM from starting.
You can access the site \http://149.102.136.153:8082/dotAdmin with the username admin@dotcms.com and password admin to verify the error and try to help me.
The startup log file:
docker-compose.yml:
This Docker Compose file is used to spin up a local dotCMS container using Docker.
Simply place this file in the desired working directory and run ‘docker compose up’ to get started.
Version: 25.07.10-1v1 LTS
Demo Site Excluded
Starter Image: 20250528
services:
db:
image: pgvector/pgvector:pg16
command: postgres -c ‘max_connections=400’ -c ‘shared_buffers=128MB’
environment:
POSTGRES_USER: ‘dotcmsdbuser’
POSTGRES_PASSWORD: ‘password’
POSTGRES_DB: ‘dotcms’
volumes:
- dbdata:/var/lib/postgresql/data
networks:
- db_net
healthcheck:
test: [“CMD-SHELL”, “pg_isready -U dotcmsdbuser -d dotcms -h localhost -p 5432”]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
opensearch:
image: opensearchproject/opensearch:1
environment:
cluster.name: “elastic-cluster”
discovery.type: “single-node”
bootstrap.memory_lock: “true”
OPENSEARCH_JAVA_OPTS: “-Xmx1G”
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
ports:
- “9200:9200”
- “9600:9600”
volumes:
- opensearch-data:/usr/share/opensearch/data
networks:
- opensearch-net
deploy:
resources:
limits:
cpus: “1.0”
memory: 2G
dotcms:
image: dotcms/dotcms:25.07.10_lts_v1_ff1e4c7
environment:
CMS_JAVA_OPTS: '-Xmx1g ’
#JAVA_TOOL_OPTIONS: ‘-XX:UseSVE=0’
LANG: ‘C.UTF-8’
TZ: ‘UTC’
DB_BASE_URL: “jdbc:postgresql://db/dotcms”
DB_USERNAME: ‘dotcmsdbuser’
DB_PASSWORD: ‘password’
DOT_ES_AUTH_BASIC_PASSWORD: ‘admin’
DOT_ES_ENDPOINTS: ‘https://opensearch:9200’
DOT_INITIAL_ADMIN_PASSWORD: ‘admin’
DOT_DOTCMS_CLUSTER_ID: ‘dotcms-production’
GLOWROOT_ENABLED: ‘true’
#GLOWROOT_WEB_UI_ENABLED: ‘true’ # Enable glowroot web ui on localhost. do not use in production
#CUSTOM_STARTER_URL: 'https://repo.dotcms.com/artifactory/libs-release-local/com/dotcms/starter/empty_20250528/starter-empty_20250528.zip'
depends_on:
- db
- opensearch
volumes:
- cms-shared:/data/shared
#- {license_local_path}/license.zip:/data/shared/assets/license.zip
networks:
- db_net
- opensearch-net
ports:
- "8082:8082"
- "8443:8443"
- "4000:4000" # Glowroot web ui if enabled
networks:
db_net:
opensearch-net:
volumes:
cms-shared:
dbdata:
opensearch-data:
Thanks in advance
Charles Bauer