https://github.com/wolffshots/hass-stack
https://github.com/wolffshots/hass-stack
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wolffshots/hass-stack
- Owner: wolffshots
- Created: 2023-06-14T09:33:30.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-14T09:49:08.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T19:44:39.988Z (4 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
should look like this:
```
.
├── homeassistant
│ └── compose.yml
├── mqtt
│ └── compose.yml
└── portainer
└── compose.yml
```make sure you update the `` placeholders in `homeassistant` and `mqtt` with absolute paths to where you want to store stuff
once stuff is defined to your liking then just `cd` into the thing you want to bring up and use `docker compose up -d` to bring it up
| action | commmand |
|---------------------------------------|-----------------------------------------------|
| bring container(s) up | `docker compose up -d` |
| take container(s) down | `docker compose down` |
| get newest image for container(s) | `docker compose pull` |
| get newest image and apply it | `docker compose pull && docker compose up -d` |as you can see from above, to update the version of the running container you just need to run `docker compose pull && docker compose up -d`