32,353 questions
Advice
0
votes
2
replies
54
views
How to healthcheck a docker container portainer-agent
How to setup a healthcheck for portainer edge agent in docker compose? Mine does not work.
---
services:
portainer_agent:
image: portainer/agent:alpine
container_name: portainer_agent
...
0
votes
0
answers
28
views
Can MinIO interact with a docker container in a stack through Tailscale?
I have a stack of containers built from the official AdamRMS compose file as per their documentation, running on a Synology NAS;
services:
adamrms_db:
image: index.docker.io/mysql/mysql-server:8....
0
votes
0
answers
39
views
Strapi hangs indefinitely while building Docker container [closed]
How can I resolve the issue where Strapi hangs during Docker container build at the following step?
=> [strapi 8/8] RUN npm run build
=> => # - STRAPI_ANALYTICS_URL
=> => # ✔ ...
0
votes
1
answer
26
views
Is it possible to use variables in environment.yaml?
I have successfully removed sensitive values from my docker-compose.yaml using .env and secrets. But the container I'm running (https://github.com/Sync-in/server) also exposes the secrets in ...
1
vote
1
answer
126
views
Failed to create config file: /.keycloak/kcadm.config in keycloak docker container
I've below docker compose file which starts the keycloack service -
version: '3.4'
services:
keycloak-postgres:
image: postgres:13
environment:
- POSTGRES_DB=keycloak
- ...
1
vote
1
answer
149
views
Kafka error in docker-compose: Missing required configuration "process.roles" which has no default value
I'm doing a tutorial that is quite old and the given docker compose file is referencing a Kafka image that is no longer available (bitnami/kafka:3.6). This caused docker-compose to fail:
kafka Error {&...
Best practices
0
votes
0
replies
36
views
Proper Memory Configuration for GraphDB Preload and Runtime with 1TB RDF Datasets
I’m fairly new to GraphDB and large-scale RDF systems, and I would really appreciate some expert advice to understand whether I have configured things correctly or if I’m missing something.
My goal is ...
-2
votes
2
answers
104
views
Incorrect IP when running app via Docker Compose [closed]
I have a python/flask app that I do docker build then docker compose. I am persistently getting the app running on IP 0.0.0.0. Here is output of docker compose up:-
Skipping DB seed: missing POSTGRES ...
Best practices
0
votes
1
replies
61
views
How to organize env variables between docker-compose, .env file, and application properties in Spring Boot?
I’m in the process of Dockerizing a Spring Boot application and building a docker-compose.yml file. I’ve split my configuration into two property files:
application-local.properties -> for local ...
0
votes
1
answer
117
views
Multiple Datasources with Docker Compose, Spring Boot, and Flyway
I'm using spring-boot-docker-compose to automatically configure datasources for my spring-boot application locally. I'm also using spring-boot-starter-flyway for schema creation/evolution. This works ...
1
vote
0
answers
71
views
Deploying Odoo 18 (Docker/Dockploy): Container crash or 502 Bad Gateway when using custom odoo.conf to pre-configure DB
I am trying to deploy Odoo Community Edition (v18) on a Debian server using Dockploy.
My Setup:
I have a custom folder for my own modules.
I have an oca folder for community modules, managed as Git ...
0
votes
0
answers
59
views
Kafka in Docker persists data after deleting containers and volumes
I'm experiencing a strange behavior when running Apache Kafka in Docker. I have set up a Docker Compose environment with the following configuration:
services:
broker:
image: apache/kafka:latest
...
-2
votes
1
answer
145
views
Docker TYPO3 project 404 page not found [closed]
I'm running a project with docker and traefik.
I try to access http://myproject.localhost/typo3
Suddenly i get this error: "404 page not found"
I don't know how to fix or to debug this error....
Advice
0
votes
0
replies
55
views
How apply airflow db migration and save them into postgress docker image?
I use docker-compose to run airflow. Postgres section is
postgres:
image: postgres:12.16
environment:
- POSTGRES_USER
- POSTGRES_PASSWORD
- POSTGRES_DB
healthcheck:
test: [ "...
1
vote
1
answer
72
views
Mikro-ORM migrations work locally but no tables in Docker container database
I have a NestJS app using Mikro-ORM and PostgreSQL.
I’m new to Dockerizing database migrations and Mikro-ORM in NestJS.
Locally, when I run:
npx mikro-orm migration:create
npx mikro-orm migration:up
...