Here is the docker-compose file I tried for ColdFusion 2018,
version: '3.3'
services:
cf18:
environment:
- acceptEULA=YES
- password=admin
volumes:
- /opt/coldfusion/:/opt/coldfusion/
ports:
- 8500:8500
image: adobecoldfusion/coldfusion2018:latest
command: 'whoami'
It works but the volumes could not be mounted and I have a docker error log like below,
/opt/startup/start-coldfusion.sh: 523: cd: can't cd to /opt/coldfusion/cfusion/bin/
I need to mount this because the changes need to persist when I do Docker "docker-compose down" and "docker-compose up".
Any help would be greatly appreciated.