diff --git a/README.md b/README.md index f0541f6..5266398 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Docker compose for my Raspberry Pi 3B running balena os x64 I forgot the password to my old HA instance, so I bought a nice, new, and shiny 128GB Samsung A2 card and used [balenaEtcher](https://www.balena.io/etcher/) to write the balena os to it. I then spent two days finding the right combination to get both [balena-homeassistant](https://github.com/balenalabs-incubator/balena-homeassistant) and [balena-rpiplay](https://github.com/rahul-thakoor/balena-rpiplay) working in tandem. ## Changelog -### Version 1.4.2 +### Version 1.4.3 - 2022-10-27: Attempt to add Plex ### Version 1.3.0 - 2022-10-27: Removed RPIPlay diff --git a/VERSION b/VERSION index 9df886c..428b770 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.2 +1.4.3 diff --git a/balena.yml b/balena.yml index 714df8b..efe96a3 100644 --- a/balena.yml +++ b/balena.yml @@ -24,4 +24,4 @@ data: - BALENA_HOST_CONFIG_gpu_mem: 256 - BALENA_HOST_CONFIG_gpu_mem_512: 128 - BALENA_HOST_CONFIG_dtoverlay: vc4-fkms-v3d -version: 1.4.2 +version: 1.4.3 diff --git a/docker-compose.yml b/docker-compose.yml index 3f4c266..fbac58c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,6 +2,7 @@ version: '2.1' volumes: config: {} mosquitto: {} + plex: {} services: homeassistant: build: @@ -40,19 +41,19 @@ services: depends_on: - homeassistant plex: - image: lscr.io/linuxserver/plex:docker + image: linuxserver/plex:docker container_name: plex volumes: - - config/plexlibrary:/config + - plex:/config restart: always ports: - '32400:32400' - - '1900:1900/udp' + - '1900:1900' - '3005:3005' - - '5353:5353/udp' + - '5353:5353' - '8324:8324' - - '32410:32410/udp' - - '32412:32412/udp' - - '32413:32413/udp' - - '32414:32414/udp' + - '32410:32410' + - '32412:32412' + - '32413:32413' + - '32414:32414' - '32469:32469' \ No newline at end of file