├── .dockerignore ├── .gitignore ├── Dockerfile ├── Dockerfile.beta ├── LICENSE ├── README.md ├── entrypoint.sh └── server.conf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytehow/docker-ghidra-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytehow/docker-ghidra-server/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytehow/docker-ghidra-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytehow/docker-ghidra-server/HEAD/Dockerfile.beta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytehow/docker-ghidra-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytehow/docker-ghidra-server/HEAD/README.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytehow/docker-ghidra-server/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytehow/docker-ghidra-server/HEAD/server.conf --------------------------------------------------------------------------------