There is already the thread in Seafile server is not working in podman pod
I am running seafile and the db in the same pod like this:
podman pod create --name=seafile-pod --publish=8083:80 && \
podman run -d --pod seafile-pod --name mariadb\
-v /cache/databases/seafile:/var/lib/mysql:rw,Z \
--env-file /srv/seafile/seafile-container/sql.env \
docker.io/library/mariadb:10 && \
podman run -d --pod seafile-pod \
docker.io/library/memcached:1.6 -m 256 && \
podman run -d --pod seafile-pod --name seafile \
-v /srv/seafile/seafile-shared/:/shared:Z \
-v /srv/seafile/seafile-data:/shared/seafile/seafile-data:Z \
--env-file /srv/seafile/seafile-container/seafile.env \
docker.io/seafileltd/seafile-mc:12.0-latest && podman logs -l -f