skip to Main Content

How to mount ColdFusion volume in Docker?

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…

VIEW QUESTION
Back To Top
Search