bropat / eufy-security-ws

Small server wrapper around eufy-security-client library to access it via a WebSocket.
MIT License
165 stars 24 forks source link

[Bug]: 1.8.0 docker image not pushed #311

Closed artushin closed 4 months ago

artushin commented 4 months ago

Version

1.8.0

Node version

N/A

Operating System type

Docker

Operating system version

OSX Sonoma 14.3.1

Describe the bug

Looks like the docker image wasn't pushed on release.

To reproduce

docker pull bropat/eufy-security-ws:1.8.0
Error response from daemon: manifest for bropat/eufy-security-ws:1.8.0 not found: manifest unknown: manifest unknown

Screenshots & Logfiles

No response

Additional context

No response

rogerthn2019 commented 4 months ago

Similar issue? docker images

REPOSITORY TAG IMAGE ID CREATED SIZE bropat/eufy-security-ws latest 91c88f3f197b 4 months ago 213MB

docker pull bropat/eufy-security-ws:latest

latest: Pulling from bropat/eufy-security-ws Digest: sha256:1a98601c02ac9e506b8528e5d17a0f9ea7fb0eb72436296a16f9aaa55b782f45 Status: Image is up to date for bropat/eufy-security-ws:latest docker.io/bropat/eufy-security-ws:latest

robinhood-code commented 4 months ago

+1

mcoms commented 4 months ago

The Github Action run which pushes the image to Docker Hub was terminated after hanging for 6 hours: https://github.com/bropat/eufy-security-ws/actions/runs/8130956768, so the image hasn't been built and pushed.

In the meantime if you want to build and run it yourself:

git clone --depth 1 --branch 1.8.0 https://github.com/bropat/eufy-security-ws.git
cd eufy-security-ws
docker build -f docker/Dockerfile -t eufy-security-ws:1.8.0 .

# Use the image name eufy-security-ws:1.8.0 in your docker run command or Compose file...
docker run --network host -it \
    -e USERNAME=user \
    -e PASSWORD=password \
    -e PORT=3000 \
    -v "$(PWD)"/data:/data \
    eufy-security-ws:1.8.0
NTGDeveloper commented 4 months ago

+1 ☹️

robinhood-code commented 4 months ago

has someone complied the docker image that can be shared before this is officially resolved? Not sure how long probat is going to be away and come back to fix this....

artushin commented 4 months ago

Wait, you mean doing something for ourselves... terrifying 😮‍💨

pushed to artushin/eufy-security-ws:1.8.0