Questions tagged [docker-compose]
The docker-compose tag has no summary.
85 questions
1
vote
1
answer
50
views
Docker Container Mount Name, Type and other values
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 ...
0
votes
0
answers
76
views
Connect to docker container through host via ssh without RemoteCommand
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 ...
2
votes
1
answer
113
views
docker can't access to some tagged images
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
...
3
votes
1
answer
3k
views
In Podman, how to disable "Executing external compose provider" message when using "podman compose"?
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/...
0
votes
1
answer
86
views
Starting a systemd user service for a docker rootlesskit user
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, ...
0
votes
1
answer
1k
views
How to Configure Cgroup V2 limits on docker-compose containers
I want to configure cgroups V2 resource limitation on a Docker-Compose container. How do I do this?
1
vote
1
answer
85
views
how to have vpn traffic routed to pihole
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 ...
0
votes
1
answer
50
views
How to send messages from the serviceA running in a docker container to the serviceB running on the host?
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. ...
0
votes
0
answers
83
views
How to connect volumes running in docker for Owncloud to the host's vm folders?
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: ...
0
votes
0
answers
37
views
Loading volume into docker container
I am using Ubuntu on my host machine, and I have a docker container also running Ubuntu that contains an ASP .NET website. Now the issue is I can't seem to figure out how to get the container to mount ...
0
votes
1
answer
2k
views
Podman and Docker: Sharing a network and/or hostname resolution between services?
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 ...
0
votes
0
answers
66
views
Running vsftpd in Docker (Swarm)
I want to use a vsftp-Server in my Docker Swarm but having some network issues. I have the following compose-file:
services:
vsftpd:
container_name: vsftpd
image: million12/vsftpd
...
1
vote
1
answer
705
views
How to get docker-compose back in Fedora 41?
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-...
2
votes
0
answers
753
views
How can I get a docker compose container's replica number from inside it, without special tools?
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. ...
0
votes
0
answers
66
views
How to take Docker Desktop full backup and restore
How to take a full backup and restore of Docker Desktop. I see that there is a way to save the Docker image as a tar file in the local filesystem.
I was looking to dump all the current images into one ...