-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.yml
68 lines (53 loc) · 949 Bytes
/
docker-compose.yml
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
version: '3'
services:
build: &base
build: .
image: ghcr.io/carapace-sh/carapace
command: sh -c 'cd /carapace/example && go build -buildvcs=false .'
user: 1000:1000
environment:
TARGET: /carapace/example/example
volumes:
- '.:/carapace/'
bash:
<<: *base
command: bash
ble:
<<: *base
command: bash
environment:
BLE: 1
TARGET: /carapace/example/example
elvish:
<<: *base
command: elvish
fish:
<<: *base
command: fish
ion:
<<: *base
command: ion
nushell:
<<: *base
command: nu
oil:
<<: *base
command: osh --completion-display minimal
powershell:
<<: *base
command: pwsh
tcsh:
<<: *base
command: tcsh
xonsh:
<<: *base
command: xonsh
zsh:
<<: *base
command: zsh
test:
<<: *base
working_dir: /carapace
command: fish -c "go test -v ./..."
volumes:
go: