Warning
.envFormatting: Do not use double quotes ("") for values in your.envfile.IMMICH_URLUpdate: The URL must now include the/apisuffix.- Previous:
IMMICH_URL=http://192.168.178.2:2283 - Current:
IMMICH_URL=http://192.168.178.2:2283/api - Note: This applies to both HTTP and HTTPS connections.
- Previous:
Important
DO NOT EXPOSE THIS INSTANCE TO THE INTERNET.
Note
- Mobile Phone Model Tracking: Track of phones used for your photos. Feel free to open an issue if yours isn't listed.
- Heatmap Activity: Photography activity heatmap to visualize your upload patterns over the last 12 months.
- Little Extra: More miscellaneous info .
ImmichStat is a way to track detailed statistics about your self-hosted Immich server.
docker run -d -p 3000:3000 \
-e IMMICH_API_KEY=your_key \
-e IMMICH_URL=your_url \
-e DATABASE_URL=DATABASE_URL=postgres://user:password@host:port/database \
friendlyfriend/immichstat:latest
# Ubuntu 24.04 LTSC
# prerequisites
# nodejs
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt install -y nodejs
node -v
# environment variables
export IMMICH_URL=your_url
export IMMICH_API_KEY=your_key
export DATABASE_URL=DATABASE_URL=postgres://user:password@host:port/database
export NODE_ENV=production
pnpm build
node build
# access webui from http://localhost:3000Building with dockerfile
git clone https://github.com/friendlyFriend4000/ImmichStat
cd ImmichStat
# fill out .env.example and rename to .env
docker build -t immichstat .
docker run -p 3000:3000 --env-file .env immichstat ## prerequisites
# Node-js 22.xx
# add IMMICH_URL, IMMICH_API_KEY and DATABASE_URL to your user's
#environment variables found in windows settings
git clone https://github.com/friendlyFriend4000/ImmichStat
cd ImmichStat
pnpm -i
pnpm dev run# prerequisites
# nodejs
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt install -y nodejs
node -v
# environment variables
export IMMICH_URL=your_url
export IMMICH_API_KEY=your_key
export DATABASE_URL=postgres://user:password@host:port/database
git clone https://github.com/friendlyFriend4000/ImmichStat
cd ImmichStat
pnpm -i
pnpm dev runPlease explain your pull-request as much as you can.


