create base folders
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
# home-assistant Environment Configuration
|
||||
CONTAINER_NAME=home-assistant
|
||||
PUID=1000
|
||||
PGID=1000
|
||||
TZ=America/Toronto
|
||||
@@ -0,0 +1,16 @@
|
||||
# home-assistant Setup & Operation Guide
|
||||
|
||||
## Overview
|
||||
Brief notes and configuration guide for **home-assistant** under `04-home-automation`.
|
||||
|
||||
## Pre-requisites
|
||||
- [ ] Network routing / DNS configured
|
||||
- [ ] Environment variables set in `.env`
|
||||
|
||||
## Deployment
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
## Maintenance & Backups
|
||||
- Path to persistent data: `./data`
|
||||
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
home-assistant:
|
||||
# image: placeholder/image:latest
|
||||
container_name: home-assistant
|
||||
restart: unless-stopped
|
||||
# environment:
|
||||
# - TZ=America/Toronto
|
||||
# volumes:
|
||||
# - ./data:/config
|
||||
# ports:
|
||||
# - "8080:8080"
|
||||
# networks:
|
||||
# - homelab-net
|
||||
|
||||
networks:
|
||||
homelab-net:
|
||||
external: true
|
||||
@@ -0,0 +1,5 @@
|
||||
# ollama-openwebui Environment Configuration
|
||||
CONTAINER_NAME=ollama-openwebui
|
||||
PUID=1000
|
||||
PGID=1000
|
||||
TZ=America/Toronto
|
||||
@@ -0,0 +1,16 @@
|
||||
# ollama-openwebui Setup & Operation Guide
|
||||
|
||||
## Overview
|
||||
Brief notes and configuration guide for **ollama-openwebui** under `04-home-automation`.
|
||||
|
||||
## Pre-requisites
|
||||
- [ ] Network routing / DNS configured
|
||||
- [ ] Environment variables set in `.env`
|
||||
|
||||
## Deployment
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
## Maintenance & Backups
|
||||
- Path to persistent data: `./data`
|
||||
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
ollama-openwebui:
|
||||
# image: placeholder/image:latest
|
||||
container_name: ollama-openwebui
|
||||
restart: unless-stopped
|
||||
# environment:
|
||||
# - TZ=America/Toronto
|
||||
# volumes:
|
||||
# - ./data:/config
|
||||
# ports:
|
||||
# - "8080:8080"
|
||||
# networks:
|
||||
# - homelab-net
|
||||
|
||||
networks:
|
||||
homelab-net:
|
||||
external: true
|
||||
Reference in New Issue
Block a user