Skip to content

Latest commit

 

History

History
58 lines (47 loc) · 947 Bytes

README.md

File metadata and controls

58 lines (47 loc) · 947 Bytes

Convertarr

Dashboard Settings

Install using Docker

docker run -d \
  --name=convertarr \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Etc/UTC \
  -p 8080:8080 \
  -v /path/to/data:/app/database \
  -v /path/to/videofiles:/videofiles `#optional` \
  --restart unless-stopped \
  kirari04/convertarr:latest

or using docker-compose

---
services:
  convertarr:
    image: kirari04/convertarr:latest
    container_name: convertarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /path/to/data:/app/database
      - /path/to/videofiles:/videofiles #optional
    ports:
      - 8080:8080
    restart: unless-stopped

Developement

Server Application

go run main.go serve

Watch Templ

templ generate --watch

Build

docker build --platform linux/amd64 -t kirari04/convertarr:latest --push .