Most voted "docker-compose" questions
Docker-Compose is a tool that assists the use and configuration of multiple Docker containers, assisting configuration from development to production environments.
Learn more…114 questions
Sort by count of
-
-1
votes1
answer470
viewsPermissions command inside Dockerfile are not executed
FROM joomla:3.9-php7.2-apache RUN apt-get update \ && apt-get install -y apt-utils vim curl COPY ./joomla_html /var/www/html RUN chown -R www-data:www-data /var/www/html/ RUN chmod -R 777…
-
-1
votes1
answer61
viewsConnect to LAN database
I have the following network: Standard gateway -> 192.168.1.1 Host -> 192.168.1.2 Database (Mysql) -> 192.168.1.3 I generated a container using Docker-Compose.yml with the following…
-
-1
votes1
answer84
viewsI cannot use the shell in Docker-Compose
I am developing a Python application with MYSQL in Docker-Compose, but it is not a web application, would it have any way to run this application in the container by shell ? if there is, you could…
-
-1
votes1
answer45
viewsSee list of containers
I am using Docker Toolbox (Docker on Windows 10), when I have to give the command docker ps it brings the following result: error During connect: Get…
-
-1
votes1
answer121
viewsConnect Laravel to Mysql
I’m trying to develop an Laravel application with Docker My Docker-Compose.yml file looks like this: version: "3.3" services: mysql: image: mysql:8.0.1 container_name: mysql environment:…
-
-1
votes1
answer801
viewsThe specified framework 'Microsoft.AspNetCore.App', version '3.1.0' was not found
Hello I have the following app on . net: I’m trying to dockerize the project. I have the following dockerfile: And the Docker-Compose.yml: And my version of dotnet is 3.1: When I execute the command…
-
-1
votes1
answer960
viewsRun sequelize migrate on a Docker container
Hello! I have my development environment set up in Docker. package json.: { "name": "teste_sequelize", "version": "1.0.0", "description": "teste do sequelize", "main": "app.js", "scripts": {…
-
-1
votes2
answers156
viewsDocker and angular circling communication with api
I started using Docker a short time ago, I tried the deployment of two applications the angular frontend and an api in python, problem that even in the same network in Docker I can only access the…
-
-1
votes1
answer76
viewsFind out Docker-Compose error
I own the following Docker-Compose: services: mysql: image: mysql:5.6 ports: - "3316:3306" volumes: - ./database/setup:/docker-entrypoint-initdb.d - ./database/data:/var/lib/mysql -…
-
-1
votes2
answers655
viewsDocker Compose + Postgres + Nodejs + knex API Connect in Bank
Hello I am studying Docker Compose, I made a simple API to make user CRUD, but I want to climb a container to run the Node and one with postgres and they communicating I did the following 'Docker…
-
-1
votes1
answer41
viewsWhy can’t I see my dags?
With this Docker-Compose I run my local images on Windows. version: "3.7" x-airflow-environment: &airflow-environment AIRFLOW__CORE__AIRFLOW_HOME: /usr/local/airflow AIRFLOW__CORE__DAGS_FOLDER:…
-
-1
votes0
answers20
viewsPage is not working after using Docker
I created a web application with Django and when I run the command "python Manage.py runserser" the page runs normally. But after running the Docker container the page appears as not working:…
-
-2
votes0
answers8
viewsQ: Docker does not find the application directory
Before describing the problem I would like to inform you that I am new in the field of programming and am learning how to use Docker now, so I ask for everyone’s understanding. I’m spinning a…
-
-2
votes1
answer13
viewsProblem with Docker local drive volumes on Windows10 WLS2
I have a problem with Docker volumes, in my first project everything went right now in another I have this error, when I will run again the 1 project works when vo. For another of that mistake. I’m…