Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
130 views

I have the springdoc in my application that generates swagger using the default url http://localhost:8090/swagger-ui/index.html If I run the application without docker it works fine, but when using ...
Daniil Hizam's user avatar
2 votes
1 answer
130 views

I want to encapsulate a service in a Docker container, and add a health check. Is it better to use CMD-SHELL, or directly inline the command? Because both would work: healthcheck: #test: ["CMD-...
membersound's user avatar
  • 87.9k
2 votes
0 answers
99 views

I dont know if anyone here has already installed Datahub project using docker-compose. I did so, in a debian machine, but when I tried to log-in i see this error : here's the docker-compose file : ...
user29295031's user avatar
1 vote
2 answers
57 views

I am running a Gunicorn app inside a docker container with the following configurations Dockerfile: FROM python:3.11-slim WORKDIR /app RUN apt-get update && apt-get install -y \ ...
GitCrush's user avatar
  • 123
1 vote
1 answer
590 views

I tried to create a Docker container for my Odoo application. I wanted to have a customized password so I used this docker compose sample from Hub Docker for Odoo but changing the version to Odoo 18 ...
Sheenergizer's user avatar
0 votes
0 answers
82 views

I am trying to take a Laravel application that I containerized with Laradock, push the images up to a container registry, pull them down to a second machine, and have it work on the other end. If you ...
steinbring's user avatar
0 votes
1 answer
56 views

I am trying to run a Flutter web frontend and a python flask + flask_socketio api/socketio backend in a docker compose file. The frontend image uses nginx as a reverse proxy, and its configuration ...
tommat208's user avatar
  • 375
0 votes
1 answer
151 views

I'm trying to set up a postgres db in docker container updated by liquibase, but run into strange errors. Here is the docker compose: version: '3.8' services: db: image: postgres:15-alpine ...
user2508615's user avatar
0 votes
0 answers
74 views

I have this docker-compose.yaml file: services: airbyte-db: image: postgres:13-alpine container_name: airbyte-db environment: POSTGRES_DB=airbyte POSTGRES_USER=airbyte POSTGRES_PASSWORD=password ...
Andyg-dev's user avatar
2 votes
1 answer
655 views

I'm using a JHipster 8.11.0-generated app with PostgreSQL as the database. To run the app in Docker, I execute the command: docker-compose -f src/main/docker/postgresql.yml up as per the JHipster ...
vic's user avatar
  • 2,860
0 votes
0 answers
75 views

I'm trying to get the IP of the client that's making a registration request, but when I try to get the data from code, I get the address of the Docker container. I made the following changes: ...
user30680575's user avatar
-3 votes
1 answer
102 views

I am trying to use the postgresql docker container to create some integration tests but trying to connect fails. I added a password because if I do not I get a different error about it requiring a ...
Cogito Ergo Sum's user avatar
0 votes
1 answer
97 views

This is my Docker Compose for MariaDB: mariadb: container_name: mariadb image: mariadb:latest environment: - MYSQL_DATABASE=homeassistant - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} ...
Jiheffe's user avatar
0 votes
0 answers
32 views

I wish to build a cross-compiler toolchain which has some arguments. Currently I have only one configuration. Folder structure: targets/ rpi3/ aarch64-rpi3-linux-gnu.defconfig ...
Daniel's user avatar
  • 2,734
0 votes
1 answer
99 views

I'm trying to setup a devcontainer for rust project which uses dynamodb as its database. This is the compose file (referenced AWS docs) services: api: build: context: . ...
Cloud Engineer's user avatar
0 votes
0 answers
119 views

Im trying to setup podman as a drop-in replacement for docker and docker compose. The 'build' and 'run' commands all work; however, the hot-reloading does not seem to work on podman while it works ...
funtkungus's user avatar
0 votes
0 answers
31 views

I am trying to do a project on network feature recognition within a 5G core. I cloned from Github the repository: https://github.com/free5gc/free5gc-compose: which uses free5gc for docker-compose: I ...
Francesco Ardizzoni's user avatar
0 votes
0 answers
53 views

I cannot get the Blazor WebAssembly debugging to work when using Docker Compose orchestration in Visual Studio 2022 The reproduction is quite simple: Create a sample app using the Blazor Web App ...
Ladislav Margai's user avatar
0 votes
0 answers
260 views

I am trying to run a docker compose and failing. I have here a minimal reproducible example. First with this docker-compose.yml services: hello-app: image: python:3.10-slim command: python ...
KansaiRobot's user avatar
  • 10.6k
2 votes
2 answers
274 views

I'm editing the source code of a Spring Boot container (created using Docker Compose) from within a DevContainer that provides a Java development environment. After editing the source code, I manually ...
user77602's user avatar
-1 votes
2 answers
462 views

I'm writing a microservice-based Backend using Spring. We decided on using Docker Containers with Docker Compose for everything. Now we need to expose Keycloak to the outside. Keycloak itself of ...
Knecht Gaming's user avatar
0 votes
2 answers
121 views

I have a Sidekiq Enterprise version. My app is running on Elastic BeanStalk (web and worker env). Also I use ElastiCache service for Redis. Before this, the application was running on a Linux system. ...
Maxim Gorbachevskiy's user avatar
0 votes
2 answers
64 views

I was working on a tasks script to manage my website project. I use child_process.exec to call some command line programs e.g. tsc. I've put this in a wrapper called x. I would also like to setup my ...
PizzaOverflow's user avatar
2 votes
0 answers
66 views

i am trying to containerize my nextjs application but I always encounter a series of problems. #Dockerfile # syntax=docker.io/docker/dockerfile:1 FROM node:18-alpine AS base FROM base AS deps RUN ...
pryxen's user avatar
  • 433
0 votes
1 answer
60 views

I have a project with two folder: frontend(react 19 with vite) and backend(fastapi), previously when in development, below are my docker and docker-compose file, and i can connect with database client ...
HUY PHAM MINH's user avatar