1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-21 17:56:53 +02:00

add gladys

This commit is contained in:
kev 2023-02-16 12:10:42 +08:00
parent e9ea0cbb8f
commit 2145ee0b8e
3 changed files with 36 additions and 0 deletions

View File

@ -342,6 +342,7 @@ A collection of delicious docker recipes.
- [x] gitlab/gitlab-ce
- [x] atlassianlabs/gostatsd
- [x] gitea/gitea :cn:
- [x] gladysassistant/gladys
- [x] gliderlabs/logspout
- [x] gliderlabs/registrator
- [ ] glot

13
gladys/README.md Normal file
View File

@ -0,0 +1,13 @@
gladys
======
[Gladys Assistant][1] is a privacy-first, open-source home assistant.
A super-stable software, designed for performance & security.
- Atomic, rock-solid & automatic upgrades
- Minimalist, clean UI
- Open-Source Code, reviewed by the community
- Integrations are built-in, not installed
[1]: https://gladysassistant.com/

22
gladys/docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
version: "3.8"
services:
gladys:
image: gladysassistant/gladys:v4
volumes:
- ./data:/var/lib/gladysassistant
- /var/run/docker.sock:/var/run/docker.sock
- /dev:/dev
- /run/udev:/run/udev:ro
environment:
- NODE_ENV=production
- SERVER_PORT=80
- TZ=UTC
- SQLITE_FILE_PATH=/var/lib/gladysassistant/gladys-production.db
logging:
driver: json-file
options:
max-size: 10m
max-file: 3
network_mode: host
privileged: true
restart: unless-stopped