-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
58 lines (54 loc) · 1.22 KB
/
docker-compose.yml
File metadata and controls
58 lines (54 loc) · 1.22 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
services:
defindex-soroban:
image: esteblock/soroban-preview:23@sha256:2981e593f04a0fa11f704c83d1a6a2fc86ae76ce9f74a4e365ed6da579430c1c
container_name: defindex-soroban
volumes:
- .:/workspace
ipc: host
networks:
- defindex-network
command: tail -f /dev/null
ports:
- "3000:3000"
- "3001:3001"
- "3010:3010"
- "3050:3050"
stellar:
image: stellar/quickstart
container_name: stellar
networks:
- defindex-network
ports:
- "8000:8000"
command: --local --protocol-version 23
stdin_open: true
tty: true
dotnet:
image: mcr.microsoft.com/dotnet/sdk:8.0
container_name: dotnet-defindex
profiles:
- on-demand
networks:
- defindex-network
volumes:
- .:/workspace
tty: true
stdin_open: true
working_dir: /workspace/packages/dotnet-sdk
dart:
image: ghcr.io/cirruslabs/flutter:3.24.4
container_name: dart-defindex
profiles:
- on-demand
networks:
- defindex-network
volumes:
- .:/workspace
ports:
- "8080:8080"
stdin_open: true
tty: true
working_dir: /workspace/packages/defindex-dart-sdk
networks:
defindex-network:
driver: bridge