70 questions
2
votes
1
answer
28
views
Facing connectivity issue on this traditional compose file on podman, unbale to rectify what is exact issue
Image details:
Service
Container ID
Image
Status
Ports
Name
Zookeeper
17025a6f1e4b
confluentinc/cp-zookeeper:latest
Up 18s
2181,2888,3888
composefiles_zookeeper_1
Kafka
4a0964b3f368
confluentinc/cp-...
0
votes
1
answer
80
views
'php artisan migrate' fails because cannot resolve name in podman-compose set-up
I try to run a Laravel Vue.js application in container for production only. After launching
podman-compose up -d
I connect to the backend container (brew-backend) with:
podman run -it brew-backend /...
1
vote
0
answers
105
views
Nx Monorepo enable hot reload in a container
I'm using NX Monorepo which contains a Nest.Js backend called Gateway. I'm trying to get hot reloading to work to remove the burden of setting up environments. However, making file changes doesn't ...
0
votes
1
answer
226
views
Running image as root in podman when Containerfile has defined a USER
Im not sure if this is doable and if it is it would have some security issued related
I have an image with an Apache Spark installation that sets a specific USER 185 in its Containerfile. When I run ...
0
votes
0
answers
126
views
Is there a separate command or setup for using podman with hot-reloading?
Im trying to setup podman as a drop-in replacement for docker and docker compose.
The 'build' and 'run' commands all work; however, the hot-reloading does not seem to work on podman while it works ...
1
vote
0
answers
116
views
How to connect to localhost from container
I am running Podman on an M2 MacBook Air.
There's an application running on the MacBook that provides a JDBC interface.
I'm trying to connect to that JDBC interface with a client app running as podman ...
0
votes
0
answers
291
views
Caddy can't get TLS certificate under rootful podman
I'm trying to get caddy to run as a reverse proxy for some other services. To do this, I'm running it in a podman-compose configuration as root. However, when running podman-compose up as root, it ...
0
votes
0
answers
293
views
Best Practices for Using Host Devices in Containers (e.g., `/dev/ttyUSB0`)
I'm trying to use a host device (/dev/ttyUSB0) inside a container environment. While I know there are multiple ways to achieve this, I'd like to understand the minimum configuration required to make ...
1
vote
0
answers
53
views
Why does podman-compose create two containers from a single service?
With the following docker-compose.yml file:
version: "3.9"
services:
fooapp-db:
image: "postgres:15-alpine"
environment:
POSTGRES_USER: <username>
...
0
votes
0
answers
538
views
How to use pasta network in podman compose?
Pasta has been available for quite some time in podman but I've yet to find any resources on how to use it in compose.
If I'm using podman compose, what are the steps needed to use pasta?
Let's assume ...
0
votes
0
answers
275
views
Error Running podman-compose with uv run on macOS: Permission Denied for pyproject.toml
I’m running a project that uses podman-compose along with uv to manage containerized environments. However, I’m facing a permission issue when trying to build and run the containers.
I’ve followed the ...
0
votes
0
answers
95
views
Run sam applications using podman instead of docker on mac Ventura
podman version
Client: Podman Engine
Version: 5.3.2
API Version: 5.3.2
Go Version: go1.23.5
Built: Tue Jan 21 13:41:34 2025
OS/Arch: darwin/arm64
Server: Podman Engine
...
1
vote
0
answers
179
views
DNS issue between containers with Pi-hole using podman
I'm running a nextcloud container with podman-compose. There are 3 containers in the compose.yaml file: nextcloud, mariadb and redis. mariadb and redis are referenced by nextcloud by their name with ...
0
votes
1
answer
354
views
Running podman with podman-compose, wordpress cannot do a network upgrade because it cannot connect to itself
When running wordpress with podman-compose, I have the issue that when trying to run a wordpress network upgrade via the web interface, I get the following error:
Error: cURL error 7: Failed to ...
0
votes
0
answers
673
views
Container running on Podman can ping host machine's private network IP address but cannot connect to service listening on that address
I have a fairly simple Dockerfile:
ARG CONTAINER_BASE_IMAGE
FROM ${CONTAINER_BASE_IMAGE}
COPY /buildenv_vars.sh /root/buildenv_vars.sh
RUN touch /root/.profile && cat /root/buildenv_vars.sh &...