trevormiller6

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by trevormiller6

  1. Ok so I removed the docker with the image. Deleted the deluge folder in appdata that had the configs. Re-downloaded the docker and set it back up and now it works... Not sure why that fixed it but it did.
  2. I have been using this with sonarr for years and never had an issue. Sonarr loads the torrents in just fine. They just don't download anymore.
  3. I'm having this same issue. Nothing downloads anymore... I can't figure out why. There are no errors in the logs. It is connected to PIA just fine. The only error I see is in the bottom right where it used to show free space now just says error... I am not even sure where to start troubleshooting, any help would be appreciated!
  4. looks like there is a new method to get port forwarding to work. Maybe this can be included in the start script...? https://www.privateinternetaccess.com/helpdesk/kb/articles/can-i-use-port-forwarding-without-using-the-pia-client-current-gen-only Go comment on this github issue. https://github.com/binhex/arch-delugevpn/issues/197
  5. I can't get flarum to connect to my mysql database. I don't have this issue with any of my other dockers. Any help would be greatly appreciated. Checking database connection... Waiting 60s for database to be ready... ERROR: Failed to connect to database on <my ip>
  6. No I am running splunk Enterprise... Wazuh has a splunk app that you install in splunk. Here is the documentation for kibana. https://documentation.wazuh.com/3.11/user-manual/kibana-app/
  7. This is the wazuh server and then you would install the kibana app in your case or if using splunk you would install the splunk app. From the app you connect to the server using the API. The app serves as the UI for wazuh.
  8. haha i was way over thinking it. I thought i had to replicate the dockerfile in the template but i just needed the paths ports and variables and unraid still runs the docker file. I was confused, the below worked just fine. Thanks for the help!
  9. Thanks for the reply! So as an example i would just add the below into the extra parameters field? RUN set -x && echo "deb https://packages.wazuh.com/3.x/apt/ stable main" | tee /etc/apt/sources.list.d/wazuh.list && \ curl -s https://packages.wazuh.com/key/GPG-KEY-WAZUH | apt-key add - && \ curl --silent --location https://deb.nodesource.com/setup_8.x | bash - && \ echo "postfix postfix/mailname string wazuh-manager" | debconf-set-selections && \ echo "postfix postfix/main_mailer_type string 'Internet Site'" | debconf-set-selections && \ groupadd -g 1000 ossec && useradd -u 1000 -g 1000 -d /var/ossec ossec
  10. Trying to create one for wazuh which is a free and open source endpoint solution. https://wazuh.com/ I get how to expose ports and volumes but what about all the RUN and COPY commands? Any help would be awesome! Docker file: https://hub.docker.com/r/wazuh/wazuh/dockerfile