Advertisement
rtfmoz

Synology NAS Change Detection IO Project

Nov 11th, 2024
270
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.76 KB | None | 0 0
  1. version: '3.2'
  2. services:
  3.     changedetection:
  4.       image: dgtlmoon/changedetection.io
  5.       container_name: changedetection
  6.       hostname: changedetection
  7.       volumes:
  8.         - /volume1/docker/changedetection:/datastore
  9.       ports:
  10.         - 5054:5000
  11.       network_mode: bridge
  12.       restart: unless-stopped
  13.       environment:
  14.         WEBDRIVER_URL: http://172.17.0.3:4444
  15.     selenium:
  16.       image: selenium/standalone-chrome:latest
  17.       container_name: selenium
  18.       hostname: selenium
  19.       shm_size: 2g
  20.       ports:
  21.         - 4444:4444
  22.         - 7900:7900
  23.       network_mode: bridge
  24.       restart: unless-stopped
  25.       environment:
  26.         SE_NODE_MAX_SESSIONS: 4
Advertisement
Comments
  • rtfmoz
    83 days (edited)
    Comment was deleted
  • rtfmoz
    83 days
    Comment was deleted
Add Comment
Please, Sign In to add comment
Advertisement