- Updated image version from latest to v0.8.3 - Deployed and verified successful upgrade - New features available: theme picker, authentication, to-do widget 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
617 B
Django/Jinja
23 lines
617 B
Django/Jinja
services:
|
|
glance:
|
|
image: glanceapp/glance:v0.8.3
|
|
volumes:
|
|
- ./config:/app/config
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: unless-stopped
|
|
extra_hosts:
|
|
- '{{ primary_domain }}:172.20.0.5'
|
|
- '{{ subdomains.watcher }}:172.20.0.5'
|
|
labels:
|
|
glance.name: Glance
|
|
glance.icon: si:homepage
|
|
glance.url: https://{{ subdomains.home }}/
|
|
glance.description: Homepage app
|
|
glance.id: glance
|
|
|
|
networks:
|
|
default:
|
|
external: true
|
|
name: {{ docker.network_name }} |