Skip to content

Commit

Permalink
Merge branch 'master' into apk
Browse files Browse the repository at this point in the history
  • Loading branch information
nemchik authored Feb 23, 2024
2 parents e78da5f + 55fdbcc commit 02befec
Show file tree
Hide file tree
Showing 13 changed files with 66 additions and 31 deletions.
59 changes: 44 additions & 15 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,65 @@ name: Build mkdocs and deploy to GitHub Pages
on: [push, pull_request]

jobs:

build:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v5.0.0
- name: Checkout repository
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
sparse-checkout: |
docs
- name: Setup python
uses: actions/setup-python@v5.0.0
with:
python-version: 3.x
- uses: actions/cache@v3.3.2
- name: Get pip cache directory
id: pip-cache
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v4.0.0
with:
key: ${{ github.ref }}
path: .cache
- run: pip install -r docs/requirements.txt
- run: mkdocs build
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Build documentation
run: mkdocs build

deploy:
if: github.event_name == 'push' && contains(fromJson('["refs/heads/master", "refs/heads/main"]'), github.ref)
needs: build
name: Deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- name: Checkout repository
uses: actions/checkout@v4.1.1
with:
fetch-depth: "0"
- uses: actions/setup-python@v5.0.0
fetch-depth: 0
sparse-checkout: |
docs
- name: Setup python
uses: actions/setup-python@v5.0.0
with:
python-version: 3.x
- uses: actions/cache@v3.3.2
- name: Get pip cache directory
id: pip-cache
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v4.0.0
with:
key: ${{ github.ref }}
path: .cache
- run: pip install -r docs/requirements.txt
- run: mkdocs gh-deploy --force
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force
3 changes: 3 additions & 0 deletions compose/.apps/audiobookshelf/audiobookshelf.aarch64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
services:
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:${AUDIOBOOKSHELF_TAG}
2 changes: 1 addition & 1 deletion compose/.apps/cloudflareddns/cloudflareddns.aarch64.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
services:
cloudflareddns:
image: cr.hotio.dev/hotio/cloudflareddns:${CLOUDFLAREDDNS_TAG}
image: ghcr.io/hotio/cloudflareddns:${CLOUDFLAREDDNS_TAG}
2 changes: 1 addition & 1 deletion compose/.apps/cloudflareddns/cloudflareddns.x86_64.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
services:
cloudflareddns:
image: cr.hotio.dev/hotio/cloudflareddns:${CLOUDFLAREDDNS_TAG}
image: ghcr.io/hotio/cloudflareddns:${CLOUDFLAREDDNS_TAG}
2 changes: 1 addition & 1 deletion compose/.apps/duplicacy/duplicacy.aarch64.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
services:
duplicacy:
image: cr.hotio.dev/hotio/duplicacy:${DUPLICACY_TAG}
image: ghcr.io/hotio/duplicacy:${DUPLICACY_TAG}
2 changes: 1 addition & 1 deletion compose/.apps/duplicacy/duplicacy.x86_64.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
services:
duplicacy:
image: cr.hotio.dev/hotio/duplicacy:${DUPLICACY_TAG}
image: ghcr.io/hotio/duplicacy:${DUPLICACY_TAG}
2 changes: 1 addition & 1 deletion compose/.apps/unpackerr/unpackerr.aarch64.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
services:
unpackerr:
image: cr.hotio.dev/hotio/unpackerr:${UNPACKERR_TAG}
image: ghcr.io/hotio/unpackerr:${UNPACKERR_TAG}
2 changes: 1 addition & 1 deletion compose/.apps/unpackerr/unpackerr.x86_64.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
services:
unpackerr:
image: cr.hotio.dev/hotio/unpackerr:${UNPACKERR_TAG}
image: ghcr.io/hotio/unpackerr:${UNPACKERR_TAG}
11 changes: 7 additions & 4 deletions docs/apps/plex.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,22 @@ you need assistance setting up this application please visit our
One possible resolution to this issue is to remove the codecs folder:

```bash
rm -rf "~/.config/appdata/plex/Library/Application Support/Plex Media Server/Codecs"
find "~/.config/appdata/plex/Library/Application Support/Plex Media Server/Codecs"* -type d -exec rm -rv {} +
```

Or place a custom init script in your config (ex:
`~/.config/appdata/plex/custom-cont-init.d/00-plex-remove-codecs`):

```bash
#!/usr/bin/with-contenv bash
set -Eeuo pipefail
set -euo pipefail
IFS=$'\n\t'

rm -rf "/config/Library/Application Support/Plex Media Server/Codecs"
echo "Codecs removed."
echo "Remove codecs: start"

find "/config/Library/Application Support/Plex Media Server/Codecs/"* -type d -exec rm -rv {} +

echo "Remove codecs: end"
```

This will run every time the container restarts.
Expand Down
2 changes: 1 addition & 1 deletion docs/overrides/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The example below will change Sonarr to use hotio's image for Sonarr and add a /
```yaml
services:
sonarr:
image: cr.hotio.dev/hotio/sonarr:latest
image: ghcr.io/hotio/sonarr:latest
volumes:
- /etc/localtime:/etc/localtime:ro
- ${DOCKERCONFDIR}/sonarr:/config
Expand Down
2 changes: 1 addition & 1 deletion docs/overrides/overseerr.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
- PUID=${PUID}
- TZ=${TZ}
hostname: ${DOCKERHOSTNAME}
image: cr.hotio.dev/hotio/overseerr:latest
image: ghcr.io/hotio/overseerr:latest
logging:
driver: json-file
options:
Expand Down
2 changes: 1 addition & 1 deletion docs/overrides/petio.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
environment:
- TZ=${TZ}
hostname: ${DOCKERHOSTNAME}
image: cr.hotio.dev/hotio/petio:latest
image: ghcr.io/hotio/petio:latest
logging:
driver: json-file
options:
Expand Down
6 changes: 3 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mkdocs-git-revision-date-localized-plugin==1.2.1
mkdocs-material==9.5.1
mkdocs-minify-plugin==0.7.1
mkdocs-git-revision-date-localized-plugin==1.2.4
mkdocs-material==9.5.9
mkdocs-minify-plugin==0.8.0
mkdocs-redirects==1.2.1

0 comments on commit 02befec

Please sign in to comment.