2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-24 22:39:25 +01:00

Merge pull request #207 from whyhankee/feature/add-cockroachdb

Add docker-compose for CockroachDB
This commit is contained in:
Kevin He
2023-05-25 18:03:26 +08:00
committed by GitHub
2 changed files with 13 additions and 0 deletions

5
cockroachdb/README.md Normal file
View File

@@ -0,0 +1,5 @@
# CockroachDB
A distributed SQL database, see [CockroachLabs](https://www.cockroachlabs.com/).
For more information on installing CockroachDB, see [CockroachLabs](https://www.cockroachlabs.com/docs/v23.1/install-cockroachdb-mac).

View File

@@ -0,0 +1,8 @@
services:
cockroachdb:
image: cockroachdb/cockroach:latest
command: start-single-node --insecure
ports:
- "26257:26257"
- "8080:8080"