├── .env ├── .gitattributes ├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── TopSAP-3.5.2.36.2-aarch64.deb ├── TopSAP-3.5.2.36.2-x86_64.deb ├── danted.conf ├── doc ├── CHANGELOG.md ├── build.md ├── faq.md └── usage.md ├── expect.exp └── start.sh /.env: -------------------------------------------------------------------------------- 1 | SERVER_ADDRESS= 2 | USER_NAME= 3 | PASSWORD= 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Log file 2 | *.log 3 | .DS_Store 4 | .idea -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/README.md -------------------------------------------------------------------------------- /TopSAP-3.5.2.36.2-aarch64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/TopSAP-3.5.2.36.2-aarch64.deb -------------------------------------------------------------------------------- /TopSAP-3.5.2.36.2-x86_64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/TopSAP-3.5.2.36.2-x86_64.deb -------------------------------------------------------------------------------- /danted.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/danted.conf -------------------------------------------------------------------------------- /doc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/doc/CHANGELOG.md -------------------------------------------------------------------------------- /doc/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/doc/build.md -------------------------------------------------------------------------------- /doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/doc/faq.md -------------------------------------------------------------------------------- /doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/doc/usage.md -------------------------------------------------------------------------------- /expect.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/expect.exp -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libra146/docker-topsap/HEAD/start.sh --------------------------------------------------------------------------------