how to run:
docker run -d \
-e PROTOCOL=both \ # active protocol tcp, udp or both
-e TIME_ZONE=Asia/Jakarta \
-e DB_HOST=finger_host \
-e DB_NAME=finger_db \
-e DB_USER=finger_user \
-e DB_PASS=finger_pass \
-p 7001:7001/tcp \
-p 7002:7002/udp \
-p 8080:8080/tcp \
burhantog/fingerkeeper:latest
run in host networks:
docker run -d \
--name fp \
-e API_URL=http://localhost:8080/api/v1/finger/write \ # Override default dashboard url
-e TCP_PORT=7001 \
-e UDP_PORT=7002 \
-e HTTP_PORT=8080 \
-e PROTOCOL=both \
-e TIME_ZONE=Asia/Jakarta \
-e DB_HOST=finger_host \
-e DB_NAME=finger_db \
-e DB_USER=finger_user \
-e DB_PASS=finger_pass \
--net host \
burhantog/fingerkeeper:latest
how to create schema:
docker exec fp cat server/structure.sql > mysql-db.sql
mysql -ufinger_user -pfinger_pass finger_db < mysql-db.sql
You can access dashboard at http://localhost:8080/ and login with:
username: [email protected]
password: password
Content type
Image
Digest
Size
390.7 MB
Last updated
over 6 years ago
docker pull burhantog/fingerkeeper