skip to Main Content

Docker Nginx with React and Laravel

So I want to have a single Nginx web server serving both frontend and backend with Docker. Here is my docker-compose: version: "3.8" services: db: #mysqldb image: mysql:5.7 container_name: ${DB_SERVICE_NAME} restart: unless-stopped environment: MYSQL_DATABASE: ${DB_DATABASE} MYSQL_ROOT_PASSWORD: ${DB_PASSWORD} MYSQL_PASSWORD: ${DB_PASSWORD} MYSQL_USER:…

VIEW QUESTION

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