https://github.com/hypfer/hass-brands-generator
https://github.com/hypfer/hass-brands-generator
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hypfer/hass-brands-generator
- Owner: Hypfer
- Created: 2025-02-22T10:01:08.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-22T10:52:01.000Z (over 1 year ago)
- Last Synced: 2026-01-30T03:58:08.271Z (5 months ago)
- Language: Dockerfile
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
Sample composefile:
```yaml
services:
homeassistant:
build:
context: ./custom-homeassistant/
dockerfile: Dockerfile
container_name: "home-assistant"
restart: always
volumes:
- /opt/docker/homeassistant:/config
- /etc/localtime:/etc/localtime:ro
- hass-brands:/config/www/brands
network_mode: "host"
depends_on:
- mariadb_hass
hass-brands-generator:
build:
context: ./hass-brands-generator/
dockerfile: Dockerfile
container_name: "hass-brands-generator"
restart: no
volumes:
- hass-brands-workspace:/workspace
- hass-brands:/output
volumes:
hass-brands-workspace:
hass-brands:
```