mirror of
https://github.com/craigerl/aprsd.git
synced 2026-01-07 08:58:41 -05:00
This patch updates the Dockerfile for building the official container image and includes the ability to load external pypi modules as plugins at container startup.
13 lines
310 B
YAML
13 lines
310 B
YAML
version: "3"
|
|
services:
|
|
aprsd:
|
|
image: hemna6969/aprsd:latest
|
|
container_name: aprsd
|
|
volumes:
|
|
- /opt/docker/aprsd/config:/config
|
|
- /opt/docker/aprsd/plugins:/plugins
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=America/New_York
|
|
- APRS_PLUGINS=aprsd-slack-plugin
|