Podman is a daemonless container engine with a docker-compatible command line
Questions tagged [podman]
66 questions
2
votes
0 answers
Setting up Lavarel with Podman, but the php user can't write to my mounted directory
I've set up a laravel project on Fedora using Podman. For this I wrote a small script that attempts to replace the build process usually done by sail.
#!/usr/bin/env bash
if [ -f ./.env ]; then
# Surce .env so Laravel's env variables are…

Buzu
- 121
- 4
2
votes
1 answer
Podman rootful containers not accessible by haproxy loadbalancer
I have created two networks in podman, "backend" and "frontend".
NAME VERSION PLUGINS
podman 0.4.0 bridge,portmap,firewall,tuning
backend 0.4.0 bridge,portmap,firewall,dnsname
frontend 0.4.0 bridge,portmap,firewall,dnsname
I…

mdx0111
- 23
- 4
1
vote
0 answers
Linux NFS (v4) user namespace file permissions
I am trying to set up a rootless container setup using podman and am having a problem with file permissions on NFS (running NFSv4).
Within the user namespace, I am able to create files as root on any filesystem, and to change ownership on any local…

Bruce
- 11
- 2
1
vote
0 answers
Setting Neo4j ports with Podman
I need to run two Neo4j containers and so would like them accessible on different ports. The first one I've started like this:
podman run --name neo4j-development -p 7687:7687 -p 7474:7474 -e "NEO4J_AUTH=none" docker.io/library/neo4j
The second,…

knirirr
- 119
- 4
1
vote
2 answers
How to configure a podman container to let it communicate with the host as well?
Is it possible to...
run a container with podman
which has an IP on the same subnet that the host is on
is accessible from every other host on the subnet
including the host itself?
I had partial success using both a macvlan and ipvlan drivers - I…

chutz
- 7,888
- 1
- 29
- 59
1
vote
0 answers
Podman is unable to start container with SELinux (sd-bus call permission error)
Here is the command I am using to start the container:
podman run -d --name busybox-top -v ./src:/dest:Z busybox top
Error:
Error: sd-bus call: Permission denied: OCI permission denied
I do not have in my user home directory (the user is not root)…

jnbdz
- 927
- 5
- 24
- 46
1
vote
1 answer
Podman (or docker) running a MySQL container and a shared data directory
I am running a Ubuntu 20.04.5 LTS virtual machine for my development environment. In the past I have run multiple VM's to host databases, web servers, etc, as I need them for projects. So in short,
I am a container noob!
What I am attempting to do…

UnKulMunki
- 13
- 1
- 6
1
vote
0 answers
Moving folders while building a podman container
I am creating a container for Podman that runs Samba Active Directory as a Primary Domain Controller and with Bind DNS backend.
It is based of a previous container that I made which had volume mappings to both Samba and Bind and that I have gotten…

Lasse Michael Mølgaard
- 947
- 10
- 27
1
vote
1 answer
podman: why need host network mode
As per man podman-run container's network can be configured in the host mode:
--network=mode, --net
...
host: Do not create a network namespace, the container will use the host’s network. Note: The host mode gives the container full access to local…

Mark
- 249
- 1
- 5
- 13
1
vote
1 answer
podman container with public IPv6
I have got a server with IPv4 address and IPv6 /64 subnet (let's say 2001:db8::/64), both public. Server itself has the following IPv6 address: 2001:db8::1/64. The gateway is fe80::1 (which causes problems with podman, because it's not in the same…

Kacper G.
- 111
- 2
1
vote
1 answer
podman container fails to start: mkdir journal dir permission denied
I had some containers running smoothly in Centos 8.2 with podman. After upgrading to Centos 8.5, I found several of the containers failing to run. In the command line, I see this:
$ podman run --name=digikam-test lscr.io/linuxserver/digikam
Error:…

molsqueak
- 11
- 2
1
vote
0 answers
mariadb is not running after restart Openstack train
I have a OpenStack train deployment with a single controller node. disk went full I deleted the cinder-volumes loop file after reboot nothing is working because all the services are unable to connect with mysql db.
2021-12-21 16:41:54.345 27 WARNING…
1
vote
0 answers
minikube on macos with m1 darwin without docker
Ok, in my search for a development environment without docker desktop, I am exploring minikube.
The issue is that minikube (at the time of writing) cannot run on macos with m1 chip because hyperkit is not supported yet on darwin acrhitecture.
I also…

santiago arizti
- 435
- 6
- 16
1
vote
1 answer
setting up k8s cluster with podman
I want to set up my first kubernetes cluster for learning purposes.
I have 3 lxc containers running AlmaLiunx 8.4 *one should become the controller, the remaining 2 will become worker nodes.
As a guide I am use this tutorial. I want however use…

vrms
- 287
- 1
- 7
- 17
1
vote
1 answer
systemd terminates etcd service started with podman - reception only permitted for main PID
I try to start etcd as a systemd service run in a container with podman.
After start I get this error log from systemd:
systemd[1]: etcd.service: Got notification message from PID 4696, but reception only permitted for main PID 4868
But etcd seem…

Jonas
- 1,187
- 5
- 19
- 33