-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
139 lines (133 loc) · 3.32 KB
/
docker-compose.yaml
File metadata and controls
139 lines (133 loc) · 3.32 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
name: accounts-sdk
services:
install:
image: node:24
working_dir: /app
volumes:
- .:/app
- node_modules:/app/node_modules
environment:
CI: 'true'
command:
- sh
- -ec
- |
apt-get update -qq
apt-get install -yqq git > /dev/null 2>&1
corepack enable
pnpm install --frozen-lockfile
playground:
image: node:24
working_dir: /app
volumes:
- .:/app
- node_modules:/app/node_modules
tmpfs:
- /app/playgrounds/web/node_modules/.vite
ports:
- '5173:5173'
labels:
dev.orbstack.domains: playground.accounts.local
command: ['sh', '-c', 'corepack enable && pnpm --filter playground dev -- --host']
healthcheck:
test:
[
CMD,
node,
-e,
"require('http').get('http://localhost:5173',r=>{process.exit(r.statusCode<500?0:1)}).on('error',()=>process.exit(1))",
]
interval: 2s
timeout: 3s
start_period: 60s
retries: 3
depends_on:
install:
condition: service_completed_successfully
wagmi:
image: node:24
working_dir: /app
volumes:
- .:/app
- node_modules:/app/node_modules
tmpfs:
- /app/playgrounds/wagmi/node_modules/.vite
ports:
- '5175:5175'
labels:
dev.orbstack.domains: wagmi.accounts.local
command: ['sh', '-c', 'corepack enable && pnpm --filter wagmi-playground dev -- --host --port 5175']
healthcheck:
test:
[
CMD,
node,
-e,
"require('http').get('http://localhost:5175',r=>{process.exit(r.statusCode<500?0:1)}).on('error',()=>process.exit(1))",
]
interval: 2s
timeout: 3s
start_period: 60s
retries: 3
depends_on:
install:
condition: service_completed_successfully
dialog-ref:
image: node:24
working_dir: /app
volumes:
- .:/app
- node_modules:/app/node_modules
tmpfs:
- /app/ref-impls/dialog/node_modules/.vite
ports:
- '5174:5174'
labels:
dev.orbstack.domains: dialog-ref.accounts.local
command: ['sh', '-c', 'corepack enable && pnpm --filter dialog-ref dev -- --host']
healthcheck:
test:
[
CMD,
node,
-e,
"require('http').get('http://localhost:5174',r=>{process.exit(r.statusCode<500?0:1)}).on('error',()=>process.exit(1))",
]
interval: 2s
timeout: 3s
start_period: 60s
retries: 3
depends_on:
install:
condition: service_completed_successfully
docs:
image: node:24
working_dir: /app
volumes:
- .:/app
- node_modules:/app/node_modules
tmpfs:
- /app/site/node_modules/.vite
- /app/site/.vocs
ports:
- '5176:5176'
labels:
dev.orbstack.domains: docs.accounts.local
command: ['sh', '-c', 'corepack enable && cd site && pnpm dev --host 0.0.0.0']
healthcheck:
test:
[
CMD,
node,
-e,
"require('http').get('http://localhost:5176',r=>{process.exit(r.statusCode<500?0:1)}).on('error',()=>process.exit(1))",
]
interval: 2s
timeout: 3s
start_period: 60s
retries: 3
depends_on:
install:
condition: service_completed_successfully
volumes:
node_modules: