Prime removed the second instance after the v0.1.3 bench. esh-ml1 handles a face in ~48 ms, sits in the house next to the cameras, and holds the verified backup. fv-ml1's gallery was empty (0 identities). The container, gallery volume, image, compose dir (with its .env), backup dir and build sources are removed from fv-ml1. GPU_ID / CARD_SUFFIX stay in the compose for any future second host.
30 lines
1.3 KiB
Bash
30 lines
1.3 KiB
Bash
# augaman — copy to .env on the host at /opt/docker/compose/augaman/.env (mode 0600).
|
|
# Real .env is gitignored and lives only on esh-ml1.
|
|
#
|
|
# ⚠ Compose's own variables carry NO `AUGAMAN_` prefix on purpose: the app refuses any
|
|
# AUGAMAN_* variable it does not know, and compose passes only the ones named in
|
|
# compose.yaml. Do not add an env_file.
|
|
|
|
# Built locally on esh-ml1 from the release tag (see README "Building").
|
|
IMAGE=augaman:0.1.3
|
|
|
|
PORT=8040
|
|
HOST_IP=10.0.50.80
|
|
|
|
# The host's card index for the GPU reservation (default 0). The container always
|
|
# sees its one card as index 0, so AUGAMAN_CUDA_DEVICE_ID never changes.
|
|
# esh-ml1: 0 (the only card). fv-ml1 used 1 while its instance existed (removed 2026-09-27).
|
|
GPU_ID=0
|
|
# Appended to the Homepage card name so the two instances are distinguishable.
|
|
# Note the leading space, e.g. CARD_SUFFIX=" (fv-ml1)". esh-ml1 leaves it empty.
|
|
CARD_SUFFIX=
|
|
|
|
# Where the backup CLI writes gallery.db. Owned 10001:10001 (the container user),
|
|
# mode 0700. On esh-ml1 it is the restic stage dir, so the backup run that copies the
|
|
# gallery here is the same run that ships it off-box (README "Backup").
|
|
BACKUP_DIR=/var/lib/restic/stage/augaman
|
|
|
|
# >= 32 visible-ASCII characters. Source of truth is the vault:
|
|
# secret get augaman/api-token
|
|
AUGAMAN_API_TOKEN=
|