32,398 questions
1
vote
2
answers
9k
views
postgres / docker: password authentication failed for user
So I am trying to set up my environment for a laravel / react application.
I am having trouble making a connection with the database.
The issue arises when I run composer install, or try to access my ...
3
votes
1
answer
66
views
How to reduce logging level in mongodb/mongodb-atlas-local
Problem:
I'm using the mongodb/mongodb-atlas-local Docker image in our CI/CD pipeline for running tests. While the verbose logging is acceptable for local development, it becomes problematic in CI/CD ...
-3
votes
0
answers
49
views
Error in PostgreSQL when running Rails and PostgreSQL using Docker Compose [closed]
I'm running Docker Compose on Ubuntu 24, and when accessing PostgreSQL from within the backend container, I get the following error:
root@60128607c5ab:/backend# psql -p 5433 -U postgres
psql: error: ...
38
votes
11
answers
34k
views
How to wait for MSSQL in Docker Compose?
I have a service (an ASP.NET Core Web application) that depends on MSSQL. The services are orchestrated using Docker compose, and I want docker compose to first start the database and wait for it to ...
1
vote
2
answers
2k
views
Cypress Docker container does not connect to running server
[ EDIT: I am not deleting the question even if it could be a duplicate of this one, because the original question might be harder to search. In case this were not advisable, please feel free to delete/...
1
vote
1
answer
8k
views
mkdir: cannot create directory ‘/home/postgres/pgdata/data’: permission denied
I am trying to run a a project with docker-compose and I am getting mkdir: cannot create directory ‘/home/postgres/pgdata/data’: permission denied. This problem only occurs on windows, on macOS the ...
1
vote
1
answer
12k
views
Docker Compose NGINX Proxy and Static Files
For some reason, my docker-compose/node/nginx stack is having trouble serving static files. The reverse proxy side works but serving my css and javascript fails. For every static file requested, I get ...
51
votes
5
answers
118k
views
Essential container in task exited
I am trying to configure my docker hub image with aws ecs..I have created repository, cluster, and task while running task am getting an error as an essential container in task exited 1. while trying ...
21
votes
4
answers
18k
views
What is the Docker security risk of /var/run/docker.sock?
In this blog article, I found the quote below in a comment:
Ben Firshman
Yes – you're right I should have pointed out the security issue with the Docker socket. That's currently the main blocker to ...
-2
votes
1
answer
105
views
docker-compose dependency on one .NET service ruins its healthcheck
I have the following docker-compose.yaml to roll my application. When I comment depends_on on newseo service, containers start with no issue and all healthchecks are passed. However, when I add ...
0
votes
0
answers
22
views
Gitea Auto upgrade on docker forces “re-install” [closed]
I have a gitea running as a stack in docker. I also have watchtower running on teh same docker instance. I find that as releases get pushed out - my gitea goes through the install page - which is ...
4
votes
4
answers
7k
views
Laravel artisan serve with PHP_CLI_SERVER_WORKERS
How can i use PHP_CLI_SERVER_WORKERS to use php in built development server to work as multi threaded? I had tried with adding environment variable in docker-composer.yaml (using sail). But it seems ...
0
votes
1
answer
44
views
How do you write a docker compose file so that it recognizes a Redis config file and a custom username/password
How do you write a docker compose file so that it recognizes a Redis config file and a custom username/password (I am trying to use an ACL file, see below) that is not hardcoded into the Redis-stack-...
0
votes
0
answers
37
views
Application running in Docker containers the application restarted using Amazon RDS Aurora MySQL for the database and experiencing out-of-memory issue
UncaughtException: Out of memory; check if mysqld or some other process uses all available memory; if not, you may have to use 'ulimit' to allow mysqld to use more memory or you can add more swap ...
1
vote
2
answers
8k
views
jira and postgres docker-compose
I have the next code which is a "docker compose" yml file and for some reason I can't find a way to make Jira connect to Postgresql
version: '3'
services:
jira:
container_name: jira
...
3
votes
2
answers
9k
views
Could not locate PropertySource because of java.net.ConnectException: Connection refused
I created a docker image and pushed it to docker hub. Now, I am trying to run it on a remote machine by using docker-compose and I get the following error.
java.lang.IllegalStateException: Could not ...
8
votes
2
answers
4k
views
docker container: changing network kernel settings, net.core.rmem_max
I'm trying to set net.core.rmem_max=26214400 on a container
I have this docker-compose
develop:
sysctls:
- net.core.rmem_max=26214400
image: centos6
but when I do
docker-...
1
vote
2
answers
2k
views
Getting Operation not permitted error using docker toolbox to get php running in container
I am on win home, using docker toolbox and getting this error:
make: /bin/sh: Operation not permitted make: *** [Makefile:243:
pdo.lo] Error 127 ERROR: Service 'php' failed to build: The command
'/...
-2
votes
0
answers
68
views
Creating a stack in portainer with docker compose in R
I would need how to create the yaml to deploy the stack making sure it has alll these libraries and that it uses these ports
Libraries:
1.1- openxlsx
1.2- xml2
1.3- rdflib
1.4- jsonld
1.5- jsonlite
1....
0
votes
0
answers
60
views
Coturn and Kurento in Docker Compose configuration
I’m setting up a WebRTC video calling system based on Spring Boot 3, Kurento Media Server, and coturn, all running inside Docker.
The goal is to make peer-to-peer media connections (doctor–patient ...
0
votes
2
answers
4k
views
Kibana security must be enabled to use Fleet
[plugins.fleet.fleet_authz_router] Kibana security must be enabled to use Fleet when i go to kibana i can not add a fleet server enter image description here
equesting service_token from Kibana.
2024-...
-1
votes
0
answers
65
views
Spring boot reading parameters from AWS parameter store without credentials on application.yml
I'm attempting to read a parameter from aws parameter store in my spring boot application.
I succeeded on my local machine but I want to make this function without having to supply my access-key and ...
-4
votes
1
answer
61
views
Spring Boot container can't connect to MySQL container in same Docker Compose network (Hostinger VPS) [duplicate]
I’m running Spring Boot, React, and MySQL inside Docker on a Hostinger VPS (Ubuntu 22.04) using the following docker-compose.yml:
version: '3.8'
services:
mysql:
image: mysql:8
...
9
votes
3
answers
26k
views
Having permissions issues with Grafana 7.3.0 on Docker
I'm using docker-compose to create a Docker network of containers with InfluxDB, a python script and Grafana to harvest and visualize response codes, query times & other stats of different ...
2
votes
1
answer
97
views
How to edit the code after locally installing a web application with Docker Compose?
I have locally installed MediaWiki using Docker Compose, as described in the documentation.
It works as expected.
My project folder contains only LocalSettings.php and compose.yaml.
The latter now ...