Posts by Jônatas Renan • 86 points
5 posts
-
0
votes1
answer1334
viewsA: When I run Curl to localhost:8080 it cannot communicate
From what you have said, you run 2 separate containers and need one to access the other via the Docker network. I will try to help you with this. Ambience Container: PHP stack Container: WEB server…
-
1
votes1
answer766
viewsA: 404 in Docker NGINX container
Use of Links is discontinued in Docker. Docker-Compose.yml version: '2' services: web: image: nginx:latest ports: - "8000:80" volumes: - ./app:/app - ./site.conf:/etc/nginx/conf.d/default.conf…
-
1
votes1
answer278
viewsA: Docker Laravel Map folder
When you perform docker run -v pasta_host:pasta_contêiner you are mounting a directory in the container before it runs. When you assemble a folder, you end up hiding what was in it before the…
-
3
votes1
answer1815
viewsA: What is the real usefulness of Docker-php-ext-configure and Docker-php-ext-install?
These two commands are tools to facilitate the inclusion of PHP modules in Docker, They are part of all official PHP images and so standardize the installation of modules.…
dockeranswered Jônatas Renan 86 -
2
votes1
answer414
viewsA: Docker and Virtualbox Shared Folders
Windows and Linux not only do they not share a file system, they also do not share a permission guidelines management system. Linux has its Unix-derived permissions system, at the time AT&T…