mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-21 23:55:17 -05:00
Compare commits
4 Commits
a41af6b864
...
f6ada2f137
Author | SHA1 | Date | |
---|---|---|---|
|
f6ada2f137 | ||
f07ef71ce0 | |||
8f1733e493 | |||
f7a9f7aaab |
26
README.rst
26
README.rst
@ -69,6 +69,7 @@ Help
|
|||||||
====
|
====
|
||||||
::
|
::
|
||||||
|
|
||||||
|
|
||||||
└─> aprsd -h
|
└─> aprsd -h
|
||||||
Usage: aprsd [OPTIONS] COMMAND [ARGS]...
|
Usage: aprsd [OPTIONS] COMMAND [ARGS]...
|
||||||
|
|
||||||
@ -77,18 +78,19 @@ Help
|
|||||||
-h, --help Show this message and exit.
|
-h, --help Show this message and exit.
|
||||||
|
|
||||||
Commands:
|
Commands:
|
||||||
check-version Check this version against the latest in pypi.org.
|
check-version Check this version against the latest in pypi.org.
|
||||||
completion Click Completion subcommands
|
completion Show the shell completion code
|
||||||
dev Development type subcommands
|
dev Development type subcommands
|
||||||
healthcheck Check the health of the running aprsd server.
|
fetch-stats Fetch stats from a APRSD admin web interface.
|
||||||
list-plugins List the built in plugins available to APRSD.
|
healthcheck Check the health of the running aprsd server.
|
||||||
listen Listen to packets on the APRS-IS Network based on FILTER.
|
list-extensions List the built in plugins available to APRSD.
|
||||||
sample-config Generate a sample Config file from aprsd and all...
|
list-plugins List the built in plugins available to APRSD.
|
||||||
send-message Send a message to a callsign via APRS_IS.
|
listen Listen to packets on the APRS-IS Network based on FILTER.
|
||||||
server Start the aprsd server gateway process.
|
sample-config Generate a sample Config file from aprsd and all...
|
||||||
version Show the APRSD version.
|
send-message Send a message to a callsign via APRS_IS.
|
||||||
webchat Web based HAM Radio chat program!
|
server Start the aprsd server gateway process.
|
||||||
|
version Show the APRSD version.
|
||||||
|
webchat Web based HAM Radio chat program!
|
||||||
|
|
||||||
|
|
||||||
Commands
|
Commands
|
||||||
|
@ -27,6 +27,7 @@ RUN set -ex \
|
|||||||
# Create a non-root user
|
# Create a non-root user
|
||||||
&& addgroup --system --gid 1001 appgroup \
|
&& addgroup --system --gid 1001 appgroup \
|
||||||
&& useradd --uid 1001 --gid 1001 -s /usr/bin/bash -m -d /app appuser \
|
&& useradd --uid 1001 --gid 1001 -s /usr/bin/bash -m -d /app appuser \
|
||||||
|
&& usermod -aG sudo appuser \
|
||||||
# Upgrade the package index and install security upgrades
|
# Upgrade the package index and install security upgrades
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
&& apt-get upgrade -y \
|
&& apt-get upgrade -y \
|
||||||
@ -51,7 +52,7 @@ RUN if [ "$INSTALL_TYPE" = "pypi" ]; then \
|
|||||||
pip3 install aprsd==$APRSD_PIP_VERSION; \
|
pip3 install aprsd==$APRSD_PIP_VERSION; \
|
||||||
elif [ "$INSTALL_TYPE" = "github" ]; then \
|
elif [ "$INSTALL_TYPE" = "github" ]; then \
|
||||||
git clone -b $APRSD_BRANCH https://github.com/craigerl/aprsd; \
|
git clone -b $APRSD_BRANCH https://github.com/craigerl/aprsd; \
|
||||||
cd /app/aprsd && pip install -e .; \
|
cd /app/aprsd && pip install .; \
|
||||||
ls -al /app/.local/lib/python3.11/site-packages/aprsd*; \
|
ls -al /app/.local/lib/python3.11/site-packages/aprsd*; \
|
||||||
fi
|
fi
|
||||||
RUN pip install gevent uwsgi
|
RUN pip install gevent uwsgi
|
||||||
|
2
setup.py
2
setup.py
@ -1,5 +1,3 @@
|
|||||||
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
# You may obtain a copy of the License at
|
# You may obtain a copy of the License at
|
||||||
|
Loading…
Reference in New Issue
Block a user