https://github.com/brannondorsey/aprsc-docker
A dockerized aprsc APRS-IS server
https://github.com/brannondorsey/aprsc-docker
amateur-radio aprs aprs-is aprsc ham-radio packet-radio
Last synced: 3 months ago
JSON representation
A dockerized aprsc APRS-IS server
- Host: GitHub
- URL: https://github.com/brannondorsey/aprsc-docker
- Owner: brannondorsey
- Created: 2019-02-24T01:55:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-19T21:27:29.000Z (almost 2 years ago)
- Last Synced: 2025-01-12T05:44:18.690Z (4 months ago)
- Topics: amateur-radio, aprs, aprs-is, aprsc, ham-radio, packet-radio
- Language: Dockerfile
- Size: 198 KB
- Stars: 13
- Watchers: 5
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# APRSC Docker
A dockerized version of [hessu's aprsc](http://aprs-is.net/) APRS-IS server. [APRS-IS](http://aprs-is.net/) connects regional APRS packet radio networks together through the Internet. The original source for `aprsc` lives [here](https://github.com/hessu/aprsc).

## Install
[Docker and Docker Compose need to be installed.](https://docs.docker.com/engine/install/debian/)
```bash
# clone the repo
git clone https://github.com/brannondorsey/aprsc-docker
cd aprsc-docker
``````bash
# 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
``````bash
# 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 .
```bash
# shutdown
docker compose down
```