├── .gitignore ├── Dockerfile.in ├── LICENSE.txt ├── Makefile ├── README.md ├── bigtable-server.go ├── runtest └── version.txt /.gitignore: -------------------------------------------------------------------------------- 1 | error.log 2 | *~ 3 | dockerout 4 | target/ 5 | *.iml 6 | build/ 7 | -------------------------------------------------------------------------------- /Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/docker-bigtable/HEAD/Dockerfile.in -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/docker-bigtable/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/docker-bigtable/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/docker-bigtable/HEAD/README.md -------------------------------------------------------------------------------- /bigtable-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/docker-bigtable/HEAD/bigtable-server.go -------------------------------------------------------------------------------- /runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/docker-bigtable/HEAD/runtest -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.5-SNAPSHOT 2 | --------------------------------------------------------------------------------