2023-07-26, 06:50 PM
(This post was last modified: 2023-07-26, 07:34 PM by chengscott. Edited 1 time in total.)
I tried to create a jellyfin container using podman:
Everything looks good after launching:
https://pastebin.com/xRdAqiCG
But, I cannot see the website neither outside nor inside the container:
Code:
podman run --replace -d --name jellyfin -p 127.0.0.1:8096:8096 -v $PWD/config:/config -v $PWD/cache:/cache -v /etc/resolv.conf:/etc/resolv.conf:ro docker.io/jellyfin/jellyfin
Everything looks good after launching:
Code:
$ podman ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
2a96fe3e97e7 docker.io/jellyfin/jellyfin:latest 35 seconds ago Up 35 seconds (healthy) 127.0.0.1:8096->8096/tcp jellyfin
$ podman logs -f jellyfin
But, I cannot see the website neither outside nor inside the container:
Code:
$ curl http://127.0.0.1:8096
$ podman exec -it jellyfin bash
root@2a96fe3e97e7:/# curl http://127.0.0.1:8096
root@2a96fe3e97e7:/#