skip to Main Content

Docker compose file for linux Debian and Arch

Hope I'm doing this correctly... First of we are using docker-compose with a yml file. Looking something like that: sudo docker-compose -f docker-compose.yml up -d In the yml file we have something similar to: version: '3.4' services: MyContainer: image: "MyContainer:latest"…

VIEW QUESTION

Where do I copy my VirtualHost directive in my Apache docker image?

I'm trying to Dockerize my Apache/Django project locally. On my local machine (running Mac Sierra) I have this file (maps.conf) in my /etc/apache2/other/ directory ... <VirtualHost *:80> ServerName maps.example.com Alias /static /Library/WebServer/Documents/maps/maps/static <Directory /Library/WebServer/Documents/maps/maps/static> Require all granted </Directory> # Next,…

VIEW QUESTION
Back To Top
Search