feat: display app version in UI footer
All checks were successful
CI / Deploy / test (pull_request) Successful in 14s
CI / Deploy / lint (pull_request) Successful in 25s
CI / Deploy / deploy (pull_request) Has been skipped

- Add version package with build-time variables
- Inject version via ldflags in Dockerfile using git describe
- Show version in footer on every page
- Log version and commit on server startup
This commit is contained in:
Ryan Hamamura
2026-03-03 09:23:37 -10:00
parent 513467470c
commit eb75654403
6 changed files with 36 additions and 5 deletions

View File

@@ -1,6 +1,10 @@
services:
games:
build: .
build:
context: .
args:
VERSION: ${VERSION:-dev}
COMMIT: ${COMMIT:-unknown}
container_name: games
restart: unless-stopped
ports: