cabernetwork / cabernet

Cabernet allows control of IPTV streams. Plugins supports DaddyLive, Pluto TV, XUMO, M3U/XMLTV.XML files (SamsungTV, STIRR, DistroTV, Plex TV)
https://cabernetwork.github.io
MIT License
176 stars 23 forks source link

Docker compose is wrong. #18

Closed Protektor-Desura closed 1 year ago

Protektor-Desura commented 2 years ago

The docker-compose.yml is wrong and doesn't even pull the correct docker image for this project. I recommend you post a docker-compose.yml like this.

version: "3.1"
services:
  cabernet:
    container_name: cabernet
    environment:
      - PGID=1000
      - PUID=1000
      - TZ=America/Chicago
    image: ghcr.io/cabernetwork/cabernet:latest
    ports:
      - "5004:5004"    # Port used to stream
      - "6077:6077"    # Web Interface Port
      - "65001:65001"  # HDHomeRun Port 
    restart: unless-stopped
    volumes:
      - /home/docker/cabernet:/app/data/

I would recommend you look at using linuxserver ubuntu as the base so you can get the ability to pick the user the docker runs as.

MartinR577 commented 1 year ago

I have not been able to get it to play in docker using plex. the web page works, i get a channel list but it won't stream

rocky4546 commented 1 year ago

updated