docker #255
docker
#255
Replies: 1 comment 2 replies
-
I ended up stopping a6e116c07346 Thanks |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Thanks for this program, I really do like it!
I am new to docker, never really looked into it before now. I wanted birdnet-go docker to run on boot-up, without logging into my PiZero. After some searching a bit I found and ran these commands:
sudo systemctl enable docker.service
sudo systemctl enable containerd.service
sudo docker run --restart=always -d ghcr.io/tphakala/birdnet-go:latest
It seems to be running OK, starts on boot. My question is, it seems there is more than one container running?
pi@birdpi:~ $ docker stats --format "table {{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}"
NAME CPU % MEM USAGE / LIMIT
gifted_banach -- -- / --
compassionate_hellman -- -- / --
but running with --no-stream option I just see one:
pi@birdpi:~ $ docker stats --format "table {{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}" --no-stream
NAME CPU % MEM USAGE / LIMIT
gifted_banach 120.29% 0B / 0B
pi@birdpi:~ $ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
a6e116c07346 ghcr.io/tphakala/birdnet-go:latest "/usr/bin/birdnet-go…" 42 hours ago Up 21 seconds 8080/tcp compassionate_hellman
c00e9c9f2a75 ghcr.io/tphakala/birdnet-go:latest "/usr/bin/birdnet-go…" 42 hours ago Up 44 minutes 0.0.0.0:8080->8080/tcp, :::8080->8080/tcp gifted_banach
Is this normal? Hows it look?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions