Participant
May 23, 2024
Question
ColdFusion won't start in Docker Container
- May 23, 2024
- 2 replies
- 699 views
I am having an issue where the ColdFusion service inside of the Docker Container is not starting up. When I look at the Logs view in Docker Desktop all that returns is the following.
[] Checking server startup status...
This setup has been working for months and all of the sudden after the 14.5 update on MacOS it stopped working.
Chipset: Apple M3 Max
MacOS 14.5
Docker Desktop Version 4.30.0 (149282)
Docker Engine: 26.1.1
Docker Container Setup Script
# variables
cf_administrator_pwd=ColdFusion123
# Run the docker conainer
docker run -dt --name mysite -p 80:8500 -v $PWD/www:/app -e acceptEULA=YES -e password=$cf_administrator_pwd -e enableSecureProfile=true --platform linux/amd64 adobecoldfusion/coldfusion2023:latest
# Wait 10 seconds
sleep 10
# Install All
docker exec mysite /opt/coldfusion/cfusion/bin/cfpm.sh install all
When I look at the logs in the container I am seeing that ColdFusion is started
/opt/coldfusion/cfusion/logs/coldfusion-out.log
May 23, 2024 19:20:57 PM Information [main] - ColdFusion started
May 23, 2024 19:21:00 PM Information [main] - ColdFusion: application services are now available
The error log does have some things that do look weird for sure (attached)
I've tried everything that I can think of and I am at a complete loss.
