9 questions from the last 30 days
-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 ...
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 {&...
Advice
0
votes
2
replies
52
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
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
=> => # ✔ ...
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
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 ...
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....
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 ...