Skip to content

Deployment

F0rzend edited this page Jun 10, 2022 · 2 revisions

Project Deployment

There are several ways to start a project:


Don't forget about configuration.

Run in Docker container from builded image

You just need to run:

docker run ghcr.io/f0rzend/radiot_dumper:latest

But this is not enough to make the running project work. You need to pass the environment variables needed by the project to the container

Build from source

Source code you can find here.

You need just clone repository:

git clone https://github.com/F0rzend/radiot_dumper.git

Go to the project directory and build it with go 1.18 or newer:

go build

After it you will have binary file radiot_dumper for your system.

On linux you can run it with command:

./radiot_dumper

Download binary file

In releases asserts you can find all versions binary for all systems.

Just download it as any other file in the Internet and run it.

Clone this wiki locally