Eufy Security WS
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
/data : /portainer/Files/AppData/Config/eufy-security-ws
unless-stopped Env Vars USERNAME=InputUSER-emailPASSWORD=InputPWD
Installation
Via Portainer
- Ensure both Docker and Portainer are installed, and up-to-date
- Log into your Portainer web UI
- Under Settings → App Templates, paste the below URL
- Head to Home → App Templates, and the list of apps will show up
- 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

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:latestVia 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