Install

2021/08/07

Tags: install git build

Build from source

git clone https://git.sr.ht/~uid/tie
cd tie
./build.sh # builds both cmd + gui
# or ./build.sh cmd
# or ./build.sh gui (requires C compiler)
sudo cp dist/* /usr/local/bin/ # optional

Docker: tie, tie-daemon, tie-serve, tie-upload, tie-download

docker run uid3/tie tie

Run tie-daemon with encryption

docker run -p 1161:1161 -v <db-path>:/data -v <certificate-path>:/keys uid3/tie tie-daemon:latest --db-path /data --tls-cert /keys/<my-cert>.crt --tls-key /keys/<my-key>.key

Run tie-daemon without encryption

docker run -p 1161:1161 -v /tmp:/data uid3/tie:latest tie-daemon --db-path /data --insecure
>> Home