snoopy86

Community Developer
  • Posts

    181
  • Joined

  • Last visited

Converted

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

snoopy86's Achievements

Apprentice

Apprentice (3/14)

8

Reputation

  1. Tnx. I have missed "Host access to custom networks" setting.
  2. Why is this a security problem? When i set one container to have static ip i still want that other container can reach this container and other way around.
  3. @dlandoncan you add notifications also for telegram? Something like this pip install python-telegram-bot ############################# from telegram import Bot, InputFile # Add the following function to send notifications to Telegram def send_telegram_notification(token, chat_id, message, image_path=None): bot = Bot(token) # Check if an image is provided if image_path: # Send photo along with the message with open(image_path, 'rb') as photo: bot.send_photo(chat_id, photo, caption=message) else: # Send only the message bot.send_message(chat_id, message) # Modify the section where you read parameters from secrets or set them manually if not param_dict['token'] or not param_dict['user']: # read from secrets secrets = read_secrets() if not param_dict['token']: param_dict['token'] = secrets.get('TELEGRAM_BOT_TOKEN') # Replace with your secret key zmlog.Debug(1, "eid:{} Reading token from secrets".format(eid)) if not param_dict['user']: param_dict['user'] = secrets.get('TELEGRAM_CHAT_ID') # Replace with your secret key zmlog.Debug(1, "eid:{} Reading user from secrets".format(eid)) # Replace the Pushover-specific code with the Telegram notification code param_dict['title'] = '{} Alarm ({})'.format(mname, eid) param_dict['message'] = cause + datetime.now().strftime(' at %I:%M %p, %b-%d') if event_type == 'event_end': param_dict['title'] = 'Ended:' + param_dict['title'] disp_param_dict = param_dict.copy() disp_param_dict['token'] = '<removed>' disp_param_dict['user'] = '<removed>' zmlog.Debug(1, "eid:{} Telegram payload: data={} files={}".format(eid, disp_param_dict, files)) send_telegram_notification(param_dict['token'], param_dict['user'], param_dict['message'], image_path) zmlog.close()
  4. Logitech Squeezebox Server and Emoncms were updated and are now based on the latest releases.
  5. I've reverted the changes. The image should be uploaded in a few minutes so you can update it.
  6. Exactly, thanks for that! This should be already fixed in UnRaid core and not having the need for us to run special scripts. Poslano z mojega SM-G998B z uporabo Tapatalk
  7. Requirement is to wake up VM when VM is in sleep/hibernation with mouse/keyboard move. When you have PCIE passtrough to VM, host is unable to access this PCIE. What needs to be done is when VM goes to sleep/hybernation host should be aware of this PCIE so it will recognize mouse moves/keyboard clicks and based on that wake up the VM which will take ownership of the PCIE again. Use-case is to cut electricity costs by not having VM's in idle mode.
  8. Is it possible that host uses GPU that is passtrough to VM when VM is in sleep mode and therfore not using it? Use-case is that i would like to use GPU on VM when it is running, when it is not (sleep/hibernation?) i would use it in trex-miner docker.
  9. Add an option to have stopped containers hidden for easier management.
  10. @DjossOpenSubtitles Login now requires FileBot 4.9.5 (r9072) or higher due to server-side API changes. Workaround until 4.9.5 is to remove opensubtitles user/pass from the variables. -------- One more thing. As Filebot docker in idle is using 200MB of memory could you add another variable so you have an option to choose if you would like to use web gui or not. This would then disable execution of those marked processes.
  11. Not possible at the moment. I can only suggest that you use Redis docker from user jj9987. This is the one i'm using and it works ok with emoncms.