Whatever message this page gives is out now! Go check it out!
ColdFusion version | Supported image tags | Lifecycle status |
ColdFusion (2025 release) | 2025, latest | Supported |
ColdFusion (2023 release) | 2023, latest | Supported |
ColdFusion (2021 release) | 2021 | Supported |
<cfscript>
// Authenticate with ColdFusion Administrator
adminObj = createObject("component","CFIDE.adminapi.administrator");
adminObj.login("ColdFusion123"); // ColdFusion Admin password
// Establish a MySQL datasource
datasource = createObject("component", "CFIDE.adminapi.datasource");
datasource.setMySQL5("SampleMYSqlDB", "database-host", "testDB");
</cfscript>version: "3"
services:
coldfusion:
container_name: myapp
build:
context: ./app
dockerfile: Dockerfile
image: app
depends_on:
- redis
- addons
ports:
- "8500:8500"
volumes:
- "/opt/wwwroot:/app"
env_file:
- coldfusion.env
healthcheck:
test: curl -f http://addons:8989/solr/ || exit 1
interval: 1m
timeout: 3s
deploy:
mode: replicated
replicas: 2
restart_policy:
condition: on-failure
update_config:
parallelism: 1
delay: 10s
networks:
- webnet
addons:
container_name: mycfaddons
image: addons
environment:
- acceptEULA=YES
ports:
- "8989:8989"
networks:
- webnet
redis:
container_name: myredis
image: redis:latest
ports:
- "6381:6379"
volumes:
- "redis_data:/data"
networks:
- webnet
volumes:
redis_data:
networks:
webnet:version: "3.3"
services:
coldfusion:
image: adobecoldfusion/coldfusion:latest
ports:
- "8501:8500"
env_file:
- variables.env
volumes:
- "./mynewwebroot:/app"
networks:
- webnet
secrets:
- source: password
target: /opt/secrets/password
networks:
webnet:
secrets:
password:
external: trueenableSecureProfile=true
language=en
installModules=debugger
setupScript=c.cfm
profile=Production Secure
setupScriptDelete=false
deploymentType=Staging
allowedAdminIPList=*.*.*.*
importCFSettings=cfsetupexport.json
importCFSettingsPassphrase=coldfusion123version: "3.3"
services:
coldfusion1:
image: adobecoldfusion/coldfusion:latest
ports:
- "8500:8500"
env_file:
- variables.env
volumes:
- "./mynewwebroot/:/app"
networks:
- webnet
secrets:
- source: password
target: /run/secrets/password
configs:
- source: cfconfig
target: /opt/config/cfconfig
configs:
cfconfig:
external: true
networks:
webnet:
secrets:
password:
external: true{
"enableSecureProfile": "YES",
"language": "ja"
}version: "3.3"
services:
coldfusion1:
image: adobecoldfusion/coldfusion:latest
ports:
- "8501:8500"
env_file:
- variables.env
networks:
- webnet
secrets:
- source: password
target: /run/secrets/password
configs:
- source: cfconfig
target: /opt/config/cfconfig
configs:
cfconfig:
file: config.json
networks:
webnet:
secrets:
password:
external: true{
"language": "ja",
"deploymentType": 1,
"profile": 2,
"startCCS": true,
"CCSNodes": "node1:8500 key1 false;node2:8443 key2 true"
}version: "3.3"
services:
coldfusion1:
image: adobecoldfusion/coldfusion:latest
ports:
- "8701:8500"
env_file:
- variables.env
volumes:
- "./mynewwebroot/:/app"
- "./mydata:/data"
networks:
- webnet
configs:
- source: cfconfig
target: /opt/config/cfconfig
configs:
cfconfig:
file: config.json
networks:
webnet:version: "3"
services:
coldfusion:
container_name: coldfusion
image: coldfusion:2023.0.7
ports:
- "8500:8500"
volumes:
- "./webroot:/app"
env_file:
- coldfusion.env
healthcheck:
test: curl -f http://localhost:8500/
interval: 1m
timeout: 3s
networks:
- webnet
pmt:
container_name: pmt
image: adobecoldfusion/pmt:2023.0.0
depends_on:
- coldfusion
ports:
- "9101:9101"
env_file:
- pmt.env
healthcheck:
test: curl -f http://localhost:9101/
interval: 1m
timeout: 3s
networks:
- webnet
networks:
webnet:version: "3"
services:
analytics:
container_name: analytics
image: public.ecr.aws/adobe/apimanageraddons:latest
env_file:
- analytics.env
networks:
- webnet
datastore:
container_name: datastore
image: public.ecr.aws/adobe/apimanageraddons:latest
env_file:
- datastore.env
networks:
- webnet
ports:
- "9200:9200"
- "9300:9300"
apim:
container_name: apimanager
image: public.ecr.aws/adobe/apimanager:latest
ports:
- "9000:9000"
env_file:
- apimanager.env
networks:
- webnet
depends_on:
- datastore
networks:
webnet: