Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
1 answer
98 views

I am trying to connect from a python script to a postgres database. Here's my docker-compose: networks: backend: name: value_tracker_backend external: true services: db: build: ...
Rory Coble's user avatar
0 votes
0 answers
55 views

I'm not really sure what's the issue here. I wrote a rather "generic" docker-compose.yml for Postgres, but neither won't it do its own setup properly, nor can any of the other containers (...
Qohelet's user avatar
  • 1,661
3 votes
0 answers
189 views

I'm developing an app with Go and to speedup my dev experience I want to leverage docker compose watch to have hot reloading. I've already used this strategy but this time I always get this error ...
Michele Del Grosso's user avatar
1 vote
1 answer
49 views

I have a problem with containerization Spring microservices. For example, there are two Spring services (serviceA, serviceB), database, discovery server and Spring API gateway. Two docker networks ...
Artyom's user avatar
  • 87
0 votes
0 answers
42 views

ArangoDB is executed in a docker environment and an init script is provided successfully. It is executed at startup of ArangoDB. This script is executed without errors in any case (see log at bottom). ...
ich's user avatar
  • 147
0 votes
0 answers
73 views

This is at the end of my Dockerfile: CMD ./run.sh I want to be able to change the CMD value with a build argument defined in my docker-compose.yml file, like this: myapp: build: args: ...
PunchParty's user avatar
2 votes
0 answers
119 views

I am building a microservices application using Spring Boot, and I am running two distinct postgres containers on docker for two of the microservices running on my local machine (Windows 10). The ...
UlugbekToshmatov's user avatar
0 votes
1 answer
97 views

I am new to Docker and Golang. I am trying to run Golang server locally and connect it with my postgres docker image.Basically I want the DB to run as docker container with persitant volume Error PS C:...
harsh9607's user avatar
0 votes
0 answers
79 views

I'm setting up GitHub Actions for a Laravel project using Docker. During the workflow run, I get the following error when Laravel tries to connect to the MySQL container: SQLSTATE[HY000] [2002] ...
divyamohan kashyap's user avatar
1 vote
0 answers
84 views

I configured a devcontainer using a docker-compose.yaml. The „sidecars“ are a database and a Keycloak instance. It works well. The Keycloak is only needed in some scenarios, so I’m looking for a way ...
stwissel's user avatar
  • 20.5k
1 vote
2 answers
57 views

I am trying to run a container on docker, i have a Dockerfile for building image, and compose.yml for multi-container configurations, note that I am using Next.js to develop my app. Dockerfile # First ...
Ghazi's user avatar
  • 766
1 vote
1 answer
71 views

I'm trying to build an image for local development. To do so, I'm using a specific Dockerfile and a specific docker-compose file. This is the Dockerfile.local file: FROM golang:1.23-alpine3.19 RUN apk ...
ferran's user avatar
  • 15
-2 votes
1 answer
70 views

I have the following services: ServiceA - proifles: [support, default] ServiceB - profiles: [support, default] ServiceC - profiles: [default] If I do the following: docker compose --profile support ...
ThaDon's user avatar
  • 8,096
0 votes
1 answer
308 views

I'm trying to build a simplified example of a Go application which exports metrics using OpenTelemetry and visualizes them in Grafana. I have the following directory structure: . ├── docker-compose....
Kurt Peek's user avatar
  • 58.5k
1 vote
2 answers
102 views

I want my client and server (and more later) containers to share an image folder I have my docker compose like this: client: build: context: ./admin/client args: NODE_VERSION:...
Keyle's user avatar
  • 80
0 votes
0 answers
55 views

I have a Python application using PyP100 to control a TP‑Link Tapo smart plug. Specifically I'm using almottier's fork. I need to use it in a docker container. When I build and launch my Docker image ...
CariP03's user avatar
1 vote
2 answers
194 views

I am building a full‑stack application using Docker Compose, with separate services for frontend (Next.js), backend (NestJS + Prisma) and a PostgreSQL database. I would like to do all development—...
ImEmo's user avatar
  • 191
0 votes
2 answers
77 views

I have a Symfony project running in container via WSL2. There is a messenger worker that I would like to start automatically when starting the project with ddev start. To start the worker manually, I ...
Bernard Polman's user avatar
0 votes
0 answers
98 views

I have a multi-container application (database, clientside, serverside and traefik). When I simply up project and expose 3000 port for clientside and access it in browser (localhost:3000) it works ...
David Voskanyan's user avatar
1 vote
1 answer
247 views

Using docker v4.42.1 under WSL2 on windows. I have a windows directory d:\bob that I have mounted as a volume in my docker container under /app/data. I've created a SQL Server compose file that sets ...
AndyW's user avatar
  • 531
0 votes
0 answers
83 views

I'm running Liquibase with Docker Compose to apply PostgreSQL database migrations. Although master.yaml exists inside the container and is mounted correctly, I keep getting this error: /liquibase/...
tarun's user avatar
  • 1
0 votes
1 answer
59 views

I am trying to setup redis in my spring app using docker without obtaining any successful logging of what is going bad. docker-compose.yml version: '3.8' services: redis: image: redis:7.2-alpine ...
Rumike7's user avatar
  • 29
0 votes
1 answer
63 views

I have a social network project for users to share their recipes. The Recipe objects managed by a ViewSet, which has Serializer, where create and update recipes operations defined, via POST and PATCH ...
user30835942's user avatar
0 votes
0 answers
38 views

There's little documentation in this regard. The problem: I'm trying to use OIDC to authenticate to Google Cloud. What for: Pull a Docker image within Artifact Registry to launch a web app in a VPS (...
Jose A's user avatar
  • 11.4k
0 votes
1 answer
88 views

I noticed my environment variables missing in .next build files, but is present when I ssh into container, it's present in the shell and REPL. When I check the app out this NEXT_PUBLIC_API_URL default ...
SMTP King's user avatar
  • 566