-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathquickstart-cockroach.yml
More file actions
37 lines (37 loc) · 1.54 KB
/
quickstart-cockroach.yml
File metadata and controls
37 lines (37 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
###########################################################################
####### FOR DEMONSTRATION PURPOSES ONLY #######
###########################################################################
# #
# If you have not yet read the tutorial, do so now: #
# https://www.ory.com/docs/hydra/5min-tutorial #
# #
# This set up is only for demonstration purposes. The login #
# endpoint can only be used if you follow the steps in the tutorial. #
# #
###########################################################################
services:
hydra-migrate:
environment:
- DSN=cockroach://root@cockroachd:26257/defaultdb?sslmode=disable&max_conns=20&max_idle_conns=4
depends_on:
"cockroachd":
condition: service_healthy
hydra:
environment:
- DSN=cockroach://root@cockroachd:26257/defaultdb?sslmode=disable&max_conns=20&max_idle_conns=4
cockroachd:
image: cockroachdb/cockroach:latest-v25.4
ports:
- "26257:26257"
command: start-single-node --insecure
networks:
- intranet
volumes:
- cockroach-data:/cockroach/cockroach-data:rw
healthcheck:
test: ["CMD", "cockroach", "node", "status", "--insecure"]
interval: 1s
timeout: 30s
retries: 30
volumes:
cockroach-data: