Issue Let’s say if I "Enable Docker" when I create a project using Visual Studio and then press the "Docker" icon, what docker command actually is running? Solution From "Quickstart: Docker in Visual Studio / Debug", it looks like a
Continue readingTag: docker
[SOLVED] Visual Studio w/Docker has exited with code 4294967295 (0xffffffff)
Issue On our new company laptops we are running into issues running containers in docker desktop from visual studio. We tried a bunch of things which were unsuccessful. Any help / thoughts would be great as we are running out
Continue reading[SOLVED] Traefik and Apache vhosts
Issue I’m pretty new to docker world and more to Traefik, so maybe I’m asking silly questions. We have a docker-compose file with a lamp stack and many vhost to route them. Yesterday I found traefik, and looks good!, but
Continue reading[SOLVED] docker compose I want use my local directory C:/html for /var/www/html
Issue Hello I want to publish the "index.php" from the local folder "C:\html\index.php" with docker-compose.yml in localhost I get the typical apache html "It works". But I do not get the content of my local folder. What I am doing
Continue reading[SOLVED] Traefik ssl containers – '500 Internal Server Error' caused by: x509: certificate is valid for 127.0.0.1, ::1, not 172.x.x.x
Issue I am using traefik:v2.8.2 and containers running apache on port 80 and 443. Apache redirect the port 80 request to port 443. Below is my traefik.yml file – # configure logs log: level: DEBUG # Set to ‘DEBUG’ for
Continue reading[SOLVED] How to run httpd:2.4-alpine docker image not as root user
Issue I try to run httpd:2.4-alpine docker image not as a root user. Default behavior : > docker run -p 80:80 -d –rm –name httpd httpd:2.4-alpine 3c271ae8abfc3f54c0e63d62a2ce26fcbeeef29064da66f4b3f6bd00480ad4fb > docker exec httpd –name httpd whoami root After looking inside the Dockerfile
Continue reading[SOLVED] How to deploy my app inside docker to ubuntu server
Issue I have an app running on docker. I am gonna deploy it to ubuntu server. So I want that when i call domain or ip from browser (ex: mydomain.com) it displays my app in browser. What configuration should I
Continue reading[SOLVED] How to migrate from ubuntu/apache2 to httpd docker image?
Issue So far I used the ubuntu/apache2:2.4-22.04_beta to run a apache2 reverse proxy. I added ssl certs to /etc/apache2/ssl, and site configuration to /etc/apache2/sites-available/000-default.conf. With configuration like: <VirtualHost *:443> SSLEngine On SSLCertificateFile … SSLCertificateKeyFile … SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
Continue reading[SOLVED] Adding imagemagick into my php 7.4 docker raised error
Issue I need to add imagemagick into my php 7.4 docker, so in file Dockerfile.yml I added : FROM php:7.4.1-apache RUN apt-get update && \ apt-get install -y \ python \ libfreetype6-dev \ libwebp-dev \ libjpeg62-turbo-dev \ libpng-dev \ libzip-dev
Continue reading[SOLVED] Docker networks: How to get container1 to communicate with server in container2
Issue I have 2 containers on a docker bridge network. One of them has an apache server that i am using as a reverse proxy to forward user to server on another container. The other container contains a server that
Continue reading