Uploaded files

This commit is contained in:
Neovoid Pineapple 2023-12-09 15:12:37 +00:00
commit 57e7455a12
Signed by: exogit
GPG key ID: 1DDC6BC38786C595
3 changed files with 21 additions and 0 deletions

9
README.md Normal file
View file

@ -0,0 +1,9 @@
my setup of yt-local service
put `yt-local.service` in `~/.config/systemd/user/` directory
and `yt-local.sh` in `~/.local/bin/` directory
use this image `docker.io/rusian/yt-local:latest`
with this command podman or `docker -d --name yt-local -p 5052:8080 yt-local`

9
yt-local.service Normal file
View file

@ -0,0 +1,9 @@
[Unit]
Description=Serves yt-local instance
[Service]
ExecStart=/home/nvpie/.local/bin/yt-local.sh
[Install]
WantedBy=default.target

3
yt-local.sh Normal file
View file

@ -0,0 +1,3 @@
#!/bin/sh
socat UNIX-LISTEN:/srv/http/pages/yt-local,mode=660,fork TCP:localhost:5052