Portainer Templates

Eufy Security WS

Tools

Eufy Security Web Socket. Edit container and add username & password.

Pulls: 1.9M
Stars: 12
User: bropat
Created: May 13, 2021
Updated: 12 days ago
Status: active
Type Container Platform linux Image bropat/eufy-security-ws:latest Ports

3993:3000/tcp

Volumes

/data : /portainer/Files/AppData/Config/eufy-security-ws

Restart Policy unless-stopped Env Vars

USERNAME=InputUSER-emailPASSWORD=InputPWD

Installation

Via Portainer

  1. Ensure both Docker and Portainer are installed, and up-to-date
  2. Log into your Portainer web UI
  3. Under Settings → App Templates, paste the below URL
  4. Head to Home → App Templates, and the list of apps will show up
  5. Select the app you wish to deploy, fill in any config options, and hit Deploy

Template Import URL

https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me demo

Via Docker Run

docker run -d \ 
  -p 3993:3000/tcp \
  -e USERNAME=${USERNAME} \
  -e PASSWORD=${PASSWORD} \
  -v /portainer/Files/AppData/Config/eufy-security-ws:/data \
  --restart=unless-stopped \
  bropat/eufy-security-ws:latest

Via Docker Compose

Save this file as docker-compose.yml and run docker-compose up -d
Use this only as a guide.

version: '3.8'
services:
  eufy-security-ws:
    image: bropat/eufy-security-ws:latest
    ports:
      - 3993:3000:tcp
    environment:
      USERNAME: ''
      PASSWORD: ''
    volumes:
      - /portainer/Files/AppData/Config/eufy-security-ws:/data

Alternative Methods

For more installation options, see the Documentation in the GitHub repo

Container Documentation