-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GHCR deployment issue #34
Comments
The images are already on the github container registry. There is a desired docker-compose.yml for that. I hope this helps! |
ok i will try, thank you |
i tried to adapt and deploy with the compose example but i failed. can u help me please? here is my current set up
|
It's my bad, I forgot to remove the link to the local I also pushed the new version, so you'll get all updates! Every release the images will be updated. I hope this helps. If you have any more problems reach out. If you're adopting the docker compose for your needs, please explain the adoptions thereby to ensure a quick resolution. |
am getting this error now
is the nginx mandatory if i have my own reverse proxy? |
my current docker compose info is as follow:
|
You need to have the docker network defined in your compose, as the traffic is routed to the containers through it.
To define the docker network you have to put:
I don't know why you have deleted it in your docker-compose.yml, but if there is any good reason, then you might have to rewrite the nginx.conf. Therefore you would use the nginx:alpine image again instead of the preconfigured one:
Replace
Yes and No. It is probably the best option to use it. It facilitates complexer routing especially for the restream mode. You could implement this logic directly in your own reverse proxy. But I may change some things in the nginx.conf in the future, which you would have to keep track and adapt to. |
If you have added
make sure to add to every container:
And also make sure paths like
|
i only use the docker default network and the paths do exist |
also i cant use ur docker sample default port because another container of mine is using it |
i also dont use virtual volumes, i use bind/ my local host fs |
any update on this? |
I think I figured it out. I have updated the naming and you can use it like this: version: "3.9"
services:
iptv_restream_frontend:
image: ghcr.io/antebrl/iptv-restream/frontend:v2.1
iptv_restream_backend:
image: ghcr.io/antebrl/iptv-restream/backend:v2.1
volumes:
- /docker/IPTV_Restream/streams:/streams
environment:
DEFAULT_CHANNEL_URL: https://mcdn.daserste.de/daserste/de/master.m3u8
STORAGE_PATH: /streams/
iptv_restream_nginx:
image: ghcr.io/antebrl/iptv-restream/nginx:v2.1
volumes:
- /docker/IPTV_Restream/streams:/streams
ports:
- "8086:80" I tested it, so it should just work like this! |
perfect and thank you for helping me with this. i will check the fix soon and report back. happy new year 🙏🤝 |
can u make everything into one container and publish the image to the dockerhub or GH to be able to deploy with docker compose?
The text was updated successfully, but these errors were encountered: