home-assistant. Adding stack draft.
All checks were successful
continuous-integration/drone/pr Build is passing
All checks were successful
continuous-integration/drone/pr Build is passing
This commit is contained in:
parent
905650d457
commit
4707d52aee
|
@ -43,6 +43,7 @@ Not every stack is tested to fully work.
|
|||
| Folding@Home | ✅ | `johnktims/folding-at-home` | Protein folding distributed computing platform. | [Website](https://foldingathome.org), [My guide](https://skobk.in/2020/06/folding-at-home-quick-start/) |
|
||||
| Gatus | ✅ | `twinproduction/gatus` | Advanced service(s) status page. | [Website](https://gatus.io), [Github](https://github.com/TwiN/gatus) |
|
||||
| Gitea | ✅ | `gitea/gitea` | Lightweight Git hosting platfom. | [Website](https://gitea.io/), [Github](https://github.com/go-gitea/gitea) |
|
||||
| Home Assistant | ✅ | `ghcr.io/home-assistant/home-assistant` | Home automation suite. | [Website](https://www.home-assistant.io/), [Github](https://github.com/home-assistant) |
|
||||
| Homer | ✅ | `b4bz/homer` | Server homepage generator. | [Github](https://github.com/bastienwirtz/homer), [Demo](https://homer-demo.netlify.app), [Configuration](https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md) |
|
||||
| I2PD | ✅ | `purplei2p/i2pd` | The Invisible Internet router. | [Website](https://i2pd.website), [Github](https://github.com/PurpleI2P/i2pd/), [I2P project](https://geti2p.net/) |
|
||||
| InBucket | ✅ | `inbucket/inbucket` | Testing SMTP/POP3 mail server with web interface. | [Website](https://www.inbucket.org), [Github](https://github.com/inbucket/inbucket) |
|
||||
|
|
8
home-assistant/.env.dist
Normal file
8
home-assistant/.env.dist
Normal file
|
@ -0,0 +1,8 @@
|
|||
# see https://www.home-assistant.io/installation/linux#install-home-assistant-container
|
||||
|
||||
#IMAGE_TAG=stable
|
||||
|
||||
HOST_CONFIG_DIR=./config
|
||||
|
||||
LOG_MAX_SIZE=5m
|
||||
LOG_MAX_FILE=5
|
2
home-assistant/config/.gitignore
vendored
Normal file
2
home-assistant/config/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/*
|
||||
!/.gitignore
|
19
home-assistant/docker-compose.yml
Normal file
19
home-assistant/docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
# https://www.home-assistant.io/installation/linux#install-home-assistant-container
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
homeassistant:
|
||||
container_name: homeassistant
|
||||
image: 'ghcr.io/home-assistant/home-assistant:${IMAGE_TAG:-stable}'
|
||||
volumes:
|
||||
- '${HOST_CONFIG_DIR:-./config}:/config'
|
||||
- '/etc/localtime:/etc/localtime:ro'
|
||||
restart: unless-stopped
|
||||
privileged: true
|
||||
network_mode: host
|
||||
env_file: .env
|
||||
logging:
|
||||
driver: 'json-file'
|
||||
options:
|
||||
max-size: '${LOG_MAX_SIZE:-5m}'
|
||||
max-file: '${LOG_MAX_FILE:-5}'
|
Loading…
Reference in a new issue