Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [docker-compose]

Compose is a tool for defining and running complex applications with Docker. With Compose, you define a multi-container application in a single file, then spin your application up in a single command which does everything that needs to be done to get it running.

docker-compose
0 votes
0 answers
10 views

Error response from daemon: error while creating mount source path '/var/www/todo/todo-app': mkdir /var/www: read-only file system

todo-app/docker-compose.yml version: '3.8' services: laravel: build: context: . dockerfile: Dockerfile ports: - "8080:8080" env_file: - .env ...
Fil's user avatar
  • 8,645
0 votes
1 answer
21 views

Unable to update Node.js in pre-built Docker container

I have a project that's inside a pre-built docker container which uses Node v14. I have been let know that the container was pulled like this a long time ago: docker pull node:20-alpine.. but not much ...
Psypher's user avatar
0 votes
0 answers
22 views

docker-compose generated WebAPI container fails to connect to MySql container

I have a Visual Studio .Net 8 Solution that contains a WebAPI backend project. It also contains dockerfile. I have also added a docker-compose to orchestrate the project. Outside of this visual ...
Babu Mannavalappil's user avatar
0 votes
1 answer
15 views

I am Dockerizing my Spring boot application and i am getting connection refusal errors

Here is my project https://github.com/haseeb1988/spRegistration.git // Creating network docker network create -d bridge sp-sql-net // build images docker build -t springboot_website . //run container ...
mohammad haseeb's user avatar
0 votes
1 answer
22 views

Handling secret env variables in Docker container via GitHub Actions

How can I dockerize an .env file while keeping the variables secret? I have an .env file that is hidden by a .gitignore and .dockerignore. I have an .env file that is hidden by a .gitignore and ....
beepbeepboop's user avatar
0 votes
0 answers
9 views

Keycloak Unable to login via OAuth (Portainer)

I'm trying to configure OAuth for Portainer via Keycloak. Everything is done as described in various guides, but I still can't get it to work. Here is my docker-compose.yaml: yaml Copy code version: '...
Vasilii Kazmin's user avatar
0 votes
0 answers
10 views

Mount new volume on existing running container (From Terminal, no Scripting) [duplicate]

In windows like host SO, If I have an existing container "LAMP-Container" and I have created a new volume with this command: docker volume create --driver local --opt type=none --opt device=...
Francisco IA Lover's user avatar
1 vote
0 answers
18 views

CORS error when fetching image from container using docker-compose

I have a NextJS frontend blog app that retrieves images and videos from a separate animations API. When this is all being run locally (frontend blog at localhost:3000 and animations API at localhost:...
jdev487's user avatar
  • 111
0 votes
1 answer
14 views

See docker name of services in petitions inside the same docker network

so I have multiple services runing in the same docker network with flask they are set like this: version: '3' services: login: build: context: ./repo_login dockerfile: Development....
Miguel Robledo's user avatar
1 vote
0 answers
26 views

Clean / Purge data in docker desktop with command line

I am using docker desktop 4.29 enterprise version. I have noticed that there are few cached data that is getting increase after every run. This is getting cached in folder "C:\Users\...
Abhishek Maurya's user avatar
0 votes
0 answers
7 views

Duplicate set of containers when running WSL with and without docker desktop

I have the following setup: Windows (Host) - running docker desktop WSL2 - /home/user/workspace/nxg contains my project files Vscode connected with a Devcontainer Project directory with relevant ...
Rohan's user avatar
  • 8,016
0 votes
0 answers
14 views

Use .sh file to build image in docker compose

I have a docker compose file that works fine on my Windows/WSL environment. I am trying to deploy it to a Ubuntu server. I get the following error unable to prepare context: path "/home/dev/...
The Governor's user avatar
0 votes
0 answers
18 views

How to run Diskover with docker-compose?

I am trying to run Diskover using docker compose. I tried the Docker compose file from here, but that did not connect to the elastic search engine. I tried to update the docker compose file, but it ...
Soerendip's user avatar
  • 8,670
0 votes
0 answers
16 views

Docker Composer change Image .env variable not working

I have ReactJs app with .env file like this: REACT_APP_SERVER_URL="URL1" Then I using Dockerfile to build to Image: # Fetching the latest node image on apline linux FROM node:22 AS builder # ...
famfamfam's user avatar
  • 518
0 votes
0 answers
12 views

How to start Docker Compose in detached mode and keep streaming logs until all services are healthy?

My goal is simple - it is to create a script that sets up my local environment before tests are ran, and logs of my containers are vital to that - sometimes, due to some env changes, the startup fails ...
Alexander Leontev's user avatar

15 30 50 per page
1
2 3 4 5
2150