Skip to main content

Questions tagged [docker-compose]

Filter by
Sorted by
Tagged with
1 vote
1 answer
59 views

I am writing a bash script and I am aware that I can get information of the mounts attached to a container using docker inspect --format '{{.Mounts}}' <container-name> which gives a result such ...
neildeadman's user avatar
0 votes
0 answers
104 views

I have a server that runs multiple docker containers. I can access my server via SSH, and have set up my ssh_config to allow me to ssh into certain containers that I regularly access: Host ...
Gunnar Knutson's user avatar
2 votes
1 answer
139 views

I'm facing with the following error using docker on my Linux Ubuntu system. ubuntu@ubuntu:~$ docker version Client: Docker Engine - Community Version: 28.0.1 API version: 1.48 ...
CarloC's user avatar
  • 385
3 votes
1 answer
4k views

I installed Podman Desktop app v. 1.18.1 on macOS Sequoia. If I execute: podman compose version … I get this on the console: >>>> Executing external compose provider "/usr/local/bin/...
Basil Bourque's user avatar
0 votes
1 answer
118 views

I run my docker stuff with a dedicated user, and installed the docker rootlesskit. I start docker with systemctl --user start docker.service. Everything related to docker, executed with that user, ...
unsafe_where_true's user avatar
0 votes
1 answer
1k views

I want to configure cgroups V2 resource limitation on a Docker-Compose container. How do I do this?
F1Linux's user avatar
  • 2,764
1 vote
1 answer
101 views

i have a pihole server running in docker compose on my Debian Linux server. i also host a wireguard vpn (also in docker compose) running on the same server. by using the tcpdump command i have ...
Ravi's user avatar
  • 11
0 votes
1 answer
52 views

I hava a senrio as follow: on basic.target stage. My host start running a serviceB, which create a unix socket file "/tmp/.test_sock" when service started. on the multi-user.target stage. ...
user688442's user avatar
0 votes
0 answers
90 views

I am trying to configure Owncloud in docker. The docker-compose yaml I am using look like this: services: owncloud: image: owncloud/server:10.15 container_name: owncloud_server restart: ...
Fotios Tragopoulos's user avatar
0 votes
1 answer
2k views

So I have a docker network named home that all of my root-based (or docker containers that were simply too hard to port to podman) containers live. sudo docker network ls NETWORK ID NAME ...
TheYokai's user avatar
  • 143
1 vote
1 answer
731 views

After upgrading Fedora 40 to 41, docker-compose was no longer available. When I try to re-install with sudo dnf install docker-compose, it raises the following conflicts: - installed package docker-...
David's user avatar
  • 111
2 votes
0 answers
788 views

I have a docker compose project where one of the services launches several replicas using the replicas directive. The replicas have automatically enumerated names, which also serve as hostnames. ...
Duncan Marshall's user avatar
0 votes
1 answer
49 views

I have a server running this CMS as a website by running a Docker file like this by docker-compose which internally uses nginxproxy/nginx-proxy and nginxproxy/acme-companion Docker images. Now, I ...
Megidd's user avatar
  • 1,579
1 vote
1 answer
199 views

Sorry I don't know if this is a docker issue or a dig issue on rockylinux 9. Everything works as expected on rockylinux 8. I have a docker-compose.yml file below with a service named https. That ...
jamshid's user avatar
  • 384
-1 votes
1 answer
468 views

I have a service defined via docker compose (see definition below). When I tried to start this service via docker-compose -f up --wait -d my_service, I get the error Error response from daemon: ...
atl123's user avatar
  • 3
0 votes
0 answers
705 views

Reposting from here as I don't quite understand how the "solution" works. Symptom: As reported here: I mount my local files into the container for development. My docker-compose.yml file is ...
xpt's user avatar
  • 1,924
1 vote
1 answer
71 views

I've a Docker container that is started via docker-compose. The configuration file specifies that it should be part of two networks. However, on occasion (approximately one in five runs), the ...
Daniel Walker's user avatar
0 votes
0 answers
1k views

My docker containers connected to a bridge network aren't able make outbound connections. I found out that two of the bridge networks had no carrier. I believe, I am currently running systemd-networkd ...
CodeCraft's user avatar
0 votes
0 answers
566 views

I use a docker-compose.yml file to boot my containers. My container mount to a external volume which targets a directory inside my user profile (postgres database files). However, after switching from ...
mesx's user avatar
  • 101
0 votes
1 answer
121 views

I have 3 raspberry pi in a daisy-chain network, with ip routes and iptables accept fwd - all three hosts can reach each others: A <--> B <--> C However a container from docker-compose ...
earcam's user avatar
  • 101
1 vote
1 answer
173 views

VMware Workstation: 16.2.5/17.0.2 Ubuntu: 20.04.6/22.04.3 Dockerfile: FROM debian:12.1-slim WORKDIR /root RUN groupadd -f ernie-1001 -g 1001 \ && groupadd -f ernie-1000 -g 1000 \ &...
Ernie Sanderson's user avatar
0 votes
0 answers
2k views

I want to run AdGuard Home on my Ubuntu Server (23.04) and point the router to the server in order to block ads etc. on my network. However, I'm running into all sorts of issues in regards to ports. ...
telometto's user avatar
  • 2,221
0 votes
0 answers
661 views

FROM php:7.3.33-apache-bullseye RUN docker-php-ext-install -j$(nproc) mysqli opcache RUN docker-php-ext-install pdo_mysql RUN docker-php-ext-install sockets # Instalar ifconfig RUN apt-get update &...
Carlos Fernandez Deus's user avatar
1 vote
2 answers
11k views

I have a permissions problem. I am running Photoprism inside a Docker container on Ubuntu 22.04. I want to use Intel QuickSync hardware transcoding. To do this, the app needs to access the /dev/dri ...
Eddified's user avatar
  • 111
2 votes
1 answer
881 views

My goal is to find a solution that would alow me to host specific ports and services publically on a VPS while having other administrative UI's that might interact with said public services buttoned ...
BobserLuck's user avatar
0 votes
0 answers
2k views

I'm hosting a gitlab-ce instance with runners on a Ubuntu 22.04.2 LTS server with docker compose : version: '3.7' services: web: image: 'gitlab/gitlab-ce:latest' restart: always hostname:...
Baks's user avatar
  • 41
3 votes
1 answer
673 views

I want to systemd-ize our docker/docker-compose/podman setups, but it seems that systemd is incapable of properly dealing with service units that end without leaving a process behind. That is ...
Torque's user avatar
  • 141
0 votes
1 answer
485 views

The big picture: I need to build an automatic testing environment which will allow me to test port scanning tools. This is github repo which I am using as a playground: https://github.com/...
Boycott OpenAI sellouts's user avatar
0 votes
0 answers
873 views

=> [internal] load build definition from Dockerfile 0.1s => => transferring dockerfile: 470B ...
RP McMurphy's user avatar
1 vote
0 answers
124 views

Setup: Over the past week I've been trying to set up a Nextcloud Docker instance on an Ubuntu Server VM, in my old 2015 Macbook Pro using VirtualBox and Vagrant. While the VM only has limited storage ...
wangf22's user avatar
  • 11
1 vote
1 answer
380 views

I have NixOS 22.11 set up on a local workstation. I use extra-container package, which can run declarative NixOS containers like imperative containers, without system rebuilds. I'm trying to run a ...
protob's user avatar
  • 281
0 votes
1 answer
463 views

Im facing an issue with how the log in docker compose looks like, seems somehow broken as shown below ==> Emulator is ready : '1' is not completely override the previous output "please wait&...
Amr Kamel's user avatar
  • 121
0 votes
0 answers
180 views

I'm having an issue where a jenkins agent can't access Docker, and I'm just about ready to give up but I figured I'd try asking here first. Along with the official documentation, I've also been using ...
KernelDeimos's user avatar
4 votes
2 answers
13k views

I'm trying out docker-compose with Podman which according to this is now supported. I run the instructions and can indeed hit the socket when running as root but when I try as user I get: permission ...
Grant Curell's user avatar
1 vote
1 answer
1k views

I've created a Docker image which contains nginx server (manually installed, not using the nginx docker image). Wherever I access the web server from, I always see 127.0.0.1 as client IP address. I ...
Maxxer's user avatar
  • 143
4 votes
1 answer
2k views

In a docker-compose.yml file, I have an entrypoint which should copy files to a bind mount so that I can retrieve them from the host: version: '3.9' services: my-service: .... entrypoint: cp /...
s.k's user avatar
  • 521
2 votes
1 answer
365 views

I installed docker with snap. Every time snap updates docker, snap.docker.dockerd (default) service gets stopped and started after some time. I have a docker-compose app running so every update my app ...
Philipp Faster's user avatar
0 votes
1 answer
109 views

Is there a free cloud service that allows to deploy a web application developed with JSf and Mysql. The application is built locally with docker compose using both the docker images of Wildfly and ...
Dev Learning's user avatar
2 votes
0 answers
1k views

I have a streamlit app that requires connection to MariaDB. When I run docker-compose up I get this error: pymysql.err.OperationalError: (2003, "Can't connect to MySQL server on 'localhost' ([...
divyashie's user avatar
1 vote
1 answer
122 views

I am migrating some apps on my home service to docker. There are several background jobs, running as user-service, using these apps. But I receive the following error Got permission denied while ...
steff123's user avatar
  • 111
1 vote
1 answer
103 views

I have started two simple docker containers using docker-compose. Each container can access the host machine, the host machine can access each container, but the containers cannot access each other. ...
Ole Tange's user avatar
  • 37.6k
1 vote
0 answers
154 views

i am new to docker I'm using it because i have a project with some dependencies and i need to speed up the process of running the code on another machine. my python code will run about 3 commands : ...
Charbel Eid's user avatar
2 votes
1 answer
4k views

I am running several docker containers and decided to reorganize them (split the configurations into folders gathering dependent services instead of having one big heap). Everything was going fine ...
WoJ's user avatar
  • 1,663
3 votes
1 answer
2k views

I installed docker-compose through $ sudo apt-get install docker-compose-plugin and as I see by the output of dpkg -L docker-compose-plugin: /. /usr /usr/libexec /usr/libexec/docker /usr/libexec/...
von spotz's user avatar
  • 515
0 votes
0 answers
2k views

how do I uninstall a broken Docker installation absolutely clean such that I can start a proper re-installation? OS is Kubuntu 20.04 Obviously I had at least some components (docker swarm) installed ...
von spotz's user avatar
  • 515
1 vote
1 answer
78 views

I want to print logs with colored keywords. Previously I used: cd ~/Code/Docker/somerepo && docker-compose logs -f my_service \ | grep -v "Successfully connected" \ | grep -v &...
WesternGun's user avatar
0 votes
0 answers
2k views

First case: I have the following docker-compose file version: '3.4' services: api: image: ${DOCKER_REGISTRY}project.api ports: - "5080:5080" - "5081:5081" ...
SomeOneOnEarth's user avatar
6 votes
1 answer
4k views

I want to debug a failing docker compose build --no-cache (it succeeds with the cache), however due to the log limit, I cannot see the reason for the failure, only the message output clipped, log ...
Konrad Höffner's user avatar
2 votes
1 answer
3k views

I am using an app depending on the image docker.io/library/mariadb:10.7. Images can be pulled, and saved in a tarball: podman pull \ docker.io/photoprism/photoprism:latest \ docker.io/library/...
pod's user avatar
  • 31
0 votes
1 answer
849 views

docker-compose.yaml version: '3' services: #PHP Service app: build: context: . dockerfile: Dockerfile image: digitalocean.com/php container_name: app restart: unless-...
cookie's user avatar
  • 242