that was insanely easy. i already have one channel up and running.
one gotcha i did encounter, it involved my mapping system: if you use the default docker-compose setup that they suggest, it'll break the connection between the frontend/backend/mapper services. i fixed it by just bringing dizque into my channels bridge (note the networks list at the bottom)...
dizquetv:
image: vexorian/dizquetv:latest
container_name: dizquetv
volumes:
- ./dizquetv:/home/node/app/.dizquetv
ports:
- 8000:8000
restart: unless-stopped
networks:
- channels
if you have dizquetv running via docker in the same compose setup as channels, it also allows you to refer to it by the service name. for example, i added my source as http://dizquetv:8000/api/channels.m3u, rather than having to use the ip and port number. using that URL from your own system won't work, but the containers will be able to talk to it that way since they're in the same docker stack.
