-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created multiple containers config for different usecases
- Loading branch information
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
container/docker-compose.yaml → container/docker-compose.beta.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
services: | ||
homeassistant: | ||
container_name: homeassistant-beta | ||
image: ghcr.io/home-assistant/home-assistant:dev | ||
privileged: true | ||
network_mode: host | ||
environment: | ||
PYTHONPATH: /config/deps/ | ||
volumes: | ||
- ../custom_components/spotcast:/config/custom_components/spotcast | ||
- ../config/:/config/:z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
services: | ||
homeassistant: | ||
container_name: homeassistant-beta | ||
image: ghcr.io/home-assistant/home-assistant:stable | ||
privileged: true | ||
network_mode: host | ||
environment: | ||
PYTHONPATH: /config/deps/ | ||
volumes: | ||
- ../custom_components/spotcast:/config/custom_components/spotcast | ||
- ../config/:/config/:z |
10ace77
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fcusson In container/docker-compose.stable.yaml seems like 'container_name' is wrong? Just a heads up :)
10ace77
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch, at least, that's only for development setup and I always drop and rebuild containers accross builds, but I'm going to change that