Skip to content

brannondorsey/aprsc-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

APRSC Docker

A dockerized version of hessu's aprsc APRS-IS server. APRS-IS connects regional APRS packet radio networks together through the Internet. The original source for aprsc lives here.

APRSC Screenshot

Install

Docker and Docker Compose need to be installed.

# clone the repo
git clone https://github.com/brannondorsey/aprsc-docker
cd aprsc-docker
# create an aprsc.conf file using the example. You MUST configure this to fit
# your needs. Configuration information is available here: 
#  http://he.fi/aprsc/CONFIGURATION.html
cp aprsc.conf.example aprsc.conf
# run the service in "detach" mode
docker compose up -d

# follow the logs
docker compose logs -f

You should now have an HTTP status server running at http://localhost:14501.

# shutdown
docker compose down