Bazarr running but not accessible

Hi,

I’m currently trying to add bazarr to my docker-compose but I am having some issues.

Everything seems to be running smoothly but for some reason I can’t seem to be able to access bazarr from a browser.

The problems seems to be related to the fact that when I run : curl http://localhost:6767
I get : curl: (56) Recv failure: Connection reset by peer

I have others containers running from the same docker-composer (sonarr, radarr, etc…) and they all work as expected.

Here is the result of docker logs -f bazarr :

[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 10-adduser: executing...

-------------------------------------
		  _         ()
		 | |  ___   _    __
		 | | / __| | |  /  \
		 | | \__ \ | | | () |
		 |_| |___/ |_|  \__/


Brought to you by linuxserver.io
We gratefully accept donations at:
https://www.linuxserver.io/donate/
-------------------------------------
GID/UID
-------------------------------------

User uid:    1000
User gid:    1000
-------------------------------------

[cont-init.d] 10-adduser: exited 0.
[cont-init.d] 30-config: executing...
[cont-init.d] 30-config: exited 0.
[cont-init.d] 99-custom-files: executing...
[custom-init] no custom files found exiting...
[cont-init.d] 99-custom-files: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
Bazarr starting...
[cont-finish.d] executing container finish scripts...
[cont-finish.d] done.
[s6-finish] waiting for services.
[s6-finish] sending all processes the TERM signal.
[s6-finish] sending all processes the KILL signal and exiting.

I’ve tried using a different port in case that they were multiple services using that port but that did not fixed the problem.

Here is the docker-compose.yml :

version: '2'
services:
  jackett:
    image: linuxserver/jackett
    container_name: jackett
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Canada/Toronto
    volumes:
      - /home/arandomguy/jackett/config:/config
      - /home/arandomguy/jackett/downloads:/downloads
    ports:
      - 9117:9117
    restart: unless-stopped
  radarr:
    image: linuxserver/radarr
    container_name: radarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Canada/Toronto
    volumes:
      - /home/arandomguy/radarr/config:/config
      - /mnt/nas/Movies:/movies
      - /mnt/external-drive:/downloads
    links:
      - jackett:jackett
    ports:
      - 7878:7878
    restart: unless-stopped
  sonarr:
    image: linuxserver/sonarr
    container_name: sonarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Canada/Toronto
    volumes:
      - /home/arandomguy/sonarr/config:/config
      - /mnt/nas/TV Shows:/tv
      - /mnt/external-drive:/downloads
    links:
      - jackett:jackett
    ports:
      - 7979:7979
    restart: unless-stopped
  bazarr:
    image: linuxserver/bazarr
    container_name: bazarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Canada/Toronto
    volumes:
      - /home/arandomguy/bazarr/config:/config
      - /mnt/nas/Movies:/movies
      - /mnt/nas/TV Shows:/tv
    ports:
      - 6767:6767
    restart: unless-stopped
  qbittorrent:
    image: linuxserver/qbittorrent
    container_name: qbittorrent
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Canada/Toronto
      - UMASK_SET=022
      - WEBUI_PORT=7575
    volumes:
      - /home/arandomguy/qbittorrent/config:/config
      - /mnt/external-drive:/downloads
    ports:
      - 6881:6881
      - 6881:6881/udp
      - 7575:7575
    restart: unless-stopped

If anyone has any idea why, I’d appreciate it. Thanks.

Your TZ variable is incorrect: https://en.m.wikipedia.org/wiki/List_of_tz_database_time_zones

1 Like

Wow, that actually fixed my issue. Thanks @aptalca.

same for me, had it at TZ=Europ/Amsterdam instead of TZ=Europe/Amsterdam
Your my hero aptalca

1 Like