├── .dictionary.txt ├── .dockerignore ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yaml └── workflows │ ├── cancel_dupes.yml │ ├── deploy.yml │ ├── deploy_trixie.yml │ ├── linting.yml │ └── pre-commit-updates.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── Dockerfile.local ├── LICENSE ├── README.md ├── rootfs ├── etc │ └── s6-overlay │ │ ├── s6-rc.d │ │ ├── 01-acarsdec │ │ │ ├── type │ │ │ └── up │ │ ├── acars_bridge │ │ │ ├── dependencies.d │ │ │ │ ├── 01-acarsdec │ │ │ │ └── 03-sdrplay-license │ │ │ ├── run │ │ │ └── type │ │ ├── acarsdec │ │ │ ├── dependencies.d │ │ │ │ ├── 01-acarsdec │ │ │ │ └── 03-sdrplay-license │ │ │ ├── run │ │ │ └── type │ │ ├── sdrplay │ │ │ └── dependencies.d │ │ │ │ ├── 01-acarsdec │ │ │ │ └── 03-sdrplay-license │ │ └── user │ │ │ └── contents.d │ │ │ ├── 01-acarsdec │ │ │ ├── acars_bridge │ │ │ └── acarsdec │ │ └── scripts │ │ ├── 01-acarsdec │ │ ├── acars_bridge │ │ └── acarsdec └── scripts │ └── healthcheck.sh └── version /.dictionary.txt: -------------------------------------------------------------------------------- 1 | crate 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/cancel_dupes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.github/workflows/cancel_dupes.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_trixie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.github/workflows/deploy_trixie.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-updates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.github/workflows/pre-commit-updates.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/Dockerfile.local -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/README.md -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/01-acarsdec/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/01-acarsdec/up: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec /etc/s6-overlay/scripts/01-acarsdec 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/acars_bridge/dependencies.d/01-acarsdec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/acars_bridge/dependencies.d/03-sdrplay-license: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/acars_bridge/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec /etc/s6-overlay/scripts/acars_bridge 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/acars_bridge/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/acarsdec/dependencies.d/01-acarsdec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/acarsdec/dependencies.d/03-sdrplay-license: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/acarsdec/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec /etc/s6-overlay/scripts/acarsdec 3 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/acarsdec/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/sdrplay/dependencies.d/01-acarsdec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/sdrplay/dependencies.d/03-sdrplay-license: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/01-acarsdec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/acars_bridge: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/acarsdec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/scripts/01-acarsdec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/rootfs/etc/s6-overlay/scripts/01-acarsdec -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/scripts/acars_bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/rootfs/etc/s6-overlay/scripts/acars_bridge -------------------------------------------------------------------------------- /rootfs/etc/s6-overlay/scripts/acarsdec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/rootfs/etc/s6-overlay/scripts/acarsdec -------------------------------------------------------------------------------- /rootfs/scripts/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/rootfs/scripts/healthcheck.sh -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdr-enthusiasts/docker-acarsdec/HEAD/version --------------------------------------------------------------------------------