mehmetgoren / feniks

A computer based NVR (Network Video Recorder) with AI capabilities
https://feniks.gitbook.io/doc
MIT License
198 stars 51 forks source link

image: gokalpgoren/mngr:v1.0.1-arm64v8 does not exist #14

Open Jubblin opened 1 year ago

Jubblin commented 1 year ago

I've checked in Docker hub but image: gokalpgoren/mngr:v1.0.1-arm64v8 does not exist but is specified by the wizard

Jubblin commented 1 year ago

In fact, it looks like there aren't any images for v1.0.1

mehmetgoren commented 1 year ago

Alright, I will create new Arm v1.0.1 images for all services except PyTorch face recognition next week. I will inform you when they are available on Docker Hub.

Jubblin commented 1 year ago

Do you have a particular process you follow for this and then I can automate for you?

mehmetgoren commented 1 year ago

Unfortunately, no. However, you can create your own Arm64 images using the build command included in the 'Dockerfile.run' for each project.

For example lets see Arm64 images for FFmpeg service: https://github.com/mehmetgoren/ffmpeg_service/blob/c8347a63cbde04ef4899362f0a8c4286aceadbcd/Dockerfile.run

run this command to build you local image: docker build -t gokalpgoren/ffmpeg_service:v1.0.1-arm64 .

Petrox commented 6 months ago
cd feniks.web_app ;       docker build -t gokalpgoren/webapp:v1.0.3-arm64v8 . ;cd ..
cd ffmpeg_service ;         docker build -t gokalpgoren/ffmpeg_service:v1.0.2-arm64v8 -f Dockerfile.raspi4 . ;cd ..
cd mngr ;         docker build -t gokalpgoren/mngr:v1.0.3-arm64v8 . ;cd ..
cd senseai_service ;         docker build -t gokalpgoren/senseai_service:v1.0.3-arm64v8 -f Dockerfile.jetson . ;cd ..
cd smcp ;         docker build -t gokalpgoren/smcp:v1.0.3-arm64v8 . ;cd ..
cd snapshot_service ; docker build -t gokalpgoren/snapshot_service:v1.0.3-arm64v8 . ; cd ..