Questions tagged [docker-compose]

Compose is a tool for defining and running multi-container Docker applications.

Docker Compose is a tool for defining and running multi-container Docker applications.

581 questions
0
votes
0 answers

(PART 2) Docker environment for PHP Framework from scratch

My First post is done here: Docker environment for PHP Framework from scratch Because I solved the first problem and I can't update or reuse a post, I prefer to create a new post with the new question from the same scenario, the scenario has some…
0
votes
0 answers

Access a Docker container remotely using my domain

I have a computer running Debian 11 and I’m trying to set up Supabase self-hosting. The Supabase official documentation only goes as far as starting the Docker containers and accessing them from http://localhost:8000. I can also visit…
Globe
  • 101
  • 1
0
votes
0 answers

Docker/Mariadb: Error starting userland proxy: Listen tcp {IP}:{PORT}: bind cannot assign requested address

I have been unable to run the command: docker-compose up --build -d as I get the following error: ERROR: for mariadb Cannot start service mariadb: driver failed programming external connectivity on endpoint cdr_performance_tracker_mariadb_1…
0
votes
1 answer

Failed to program FILTER chain: iptables failed

OS: Ubuntu Server edition (headless) 20.04 LTS. Attempting to ge a makemkv container running: https://hub.docker.com/r/jlesage/makemkv docker-compose.yml file: version: '3' services: makemkv: image: jlesage/makemkv ports: -…
BrokenCode
  • 163
  • 7
0
votes
0 answers

Rabbit cache in docker-compose grows infinitely

i have problem with docker overlay mqueue-client folder grows infinitely. Now i have queue empty but folder take 80 GB here is docker-compose config rabbit: image: "rabbitmq:3.8-management" hostname: "rabbit" deploy: …
grek
  • 1
  • 2
0
votes
1 answer

What if I don't declare a reused volume in the top level `volumes` key of a compose file

The compose specification says: To reuse a volume across multiple services, a named volume MUST be declared in the top-level volumes key. I am currently trying to debug an application with a docker bind mount issue. I noticed that the compose.yaml…
0
votes
1 answer

Error running an Docker container or docker compose with postgres, golang and Debian 11, Agora appbuilder backend

I spun up a Debian 11 EC2 on AWS, and installed postgres 14.5 on it and docker and docker compose on it.I added a superuser to postgres of "admin' with a password. I created my docker-compose.yml file and a .env file. When I try to use the…
gwhiz
  • 37
  • 5
0
votes
0 answers

Assets returning 504 when port is not specified in the browser using an nginx reverse proxy

If I visit hxxp://grafana.home.lan, I received a 110 connection timed out error on some assets which do not allow the application to work correctly, in this case, Grafana. Though, I will add this is not just happening with the Grafana service, it is…
0
votes
1 answer

Run Docker Registry behind iptables

I am trying to run a private docker registry on my CentOS 7 VPS which is running httpd apache and iptables. When I start the container, docker run -it -p 5017:5000 --name registry registry, I try to run curl http://localhost:5017/v2 and I get the…
Jwags
  • 101
  • 3
0
votes
1 answer

MongoDB Container Docker not working. MacOS

Any time I try to access my container it shows the path isn't found? I get this error "mongo": executable file not found in $PATH: unknown How can I fix this? Docker-compose file and output
jsonnham
  • 1
  • 1
0
votes
1 answer

Docker run SED command before container starts

I'm running Rundeck with docker-compose and Dockerfile and i need to modify a value inside a file which is inside the container. I can copy the modified file from another place (local) and place it inside the container while the build phase is in…
0
votes
1 answer

Docker + Wordpress: styles, scripts, images are not loading in my theme

I'm trying to figure out, why my assets like CSS, JS and images are not loading in my theme when running installation on Docker. Here's my docker-compose.yml version: "3.3" services: db: image: mysql:8 container_name: blogpn_mysql …
sunpietro
  • 101
  • 1
0
votes
0 answers

How to prevent IP masquerading when allowing Docker containers to talk to each other?

I'm running a Mastodon instance using docker-compose, which builds and runs several containers, that connect to each other through a Docker internal network (the relevant docker-compose.yml). I'm running this on an up-to-date Debian 11 server. The…
rnlf
  • 1
  • 1
0
votes
1 answer

Nginx blocking static files in docker-compose

I'm running docker-compose on internal port 8732, Nginx works as a proxy server, which is listening to the request from 80/443 and forwarding them to internal 8732. The problem is the static files (.css, .js, .png) not serving and getting error 404,…
0
votes
0 answers

Docker with Nginx and "external" container. 502 error after "external" container restart

I have 2 different docker-compose YML files in 2 suppurate directories. They are both on the same server and on the same Docker network. My containers with application is in the first YML file and the second YML file has only one Nginx container…
user2265529
  • 133
  • 1
  • 5