Jump to content

Anyone here mess about with docker and sonarr etc,


djnumnuts

Recommended Posts

I have Mylar set up with Nzbget using Docker on my Syno DS218+. I was having issues with the ports at first but it's good now except I haven't set up any post-processing scripts this time (I used to have them on my previous NAS)

What's the issue?

  • Like 1
Link to comment
Share on other sites

Hi necks, Got the VPN PIA image running but want to run the command to do an IP check, so I know its working and doing its job. Here is the image link https://hub.docker.com/r/qmcgaw/private-internet-access/ and the command is

docker run --rm --network=container:pia alpine:3.10 wget -qO- https://ipinfo.io

done Ctrl A copy and paste, also tried docker run hello world. Basiclly how do you run any command in the terminal window?
Link to comment
Share on other sites

I'm not exactly sure how to do that but I think you need to open a shell within the container that is running the PIA image and execute your commands there or you need to send the command to the container directly with

docker exec -it <container id> <command>

I.e.:

docker exec -it <container_id_or_name> echo "Hello from container!"

or

docker exec -it <container_id_or_name> bash

then type your command since you should be able to interact from within your container at that point

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...