Server Version#: 1.23.3.4706
Hi all, I just moved Plex from a Synology installable package (DSM 6) to using Docker. The new Plex installation works great on the internal network, but I now get a warning that the server is not accessible from the outside. I do have port 32400 forwarded to the Synology server’s IP (as I did before when using the package). So, I’m a bit stumped as to what might be causing this and was hoping someone here might have some ideas?
I’ll paste my docker-compose.yml file below as well. Thank you for any pointers!
version: ‘2’
services:
linuxserver-plex:
container_name: Plex
restart: unless-stopped
image: plexinc/pms-docker:plexpass
environment:
- PUID=xxx # user account id on the system
- PGID=xxx # group id on the system
- TZ=America/Vancouver
- PLEX_CLAIM=""
- ADVERTISE_IP=“http://192.168.1.220:32400/”
ports:
- “32400:32400” #(for access to the Plex Media Server) [required]
- “32400:32400/udp”
- “32410:32410/udp” #(for current GDM network discovery)
- “32412:32412/udp”
- “32413:32413/udp”
- “32414:32414/udp”
- “32469:32469” #(for access to the Plex DLNA Server)
- “32469:32469/udp”
- “5353:5353” # (for older Bonjour/Avahi network discovery)
#- “1900:1900/udp” #(for access to the Plex DLNA Server)
volumes:
- /volume1/docker/plex/config:/config
- /volume1/docker/plex/transcode:/transcode # this is not strictly necessary, but I’ve configured Plex to use this directory for transcoding. Should make it easier to backup only the configuration and not transcoding artifacts.
#- /volume1/data/media/video/tv:/data/tvshows:ro
#- /volume1/data/media/video/movies:/data/movies:ro
- /volume1/data/media/video:/data:ro