-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcompose.yaml
More file actions
32 lines (31 loc) · 865 Bytes
/
compose.yaml
File metadata and controls
32 lines (31 loc) · 865 Bytes
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
services:
vim:
image: ghcr.io/vim-denops/vim:${DOCKER_TAG:-latest}
build:
context: .
dockerfile: dockerfiles/vim
platforms:
- linux/amd64
- linux/arm64
args:
DENOPS_VERSION: ${DENOPS_VERSION:-main}
cache_from:
- ghcr.io/vim-denops/vim/cache
- ghcr.io/vim-denops/vim
cache_to:
- type=registry,ref=ghcr.io/vim-denops/vim/cache,mode=max
neovim:
image: ghcr.io/vim-denops/neovim:${DOCKER_TAG:-latest}
build:
context: .
dockerfile: dockerfiles/neovim
platforms:
- linux/amd64
- linux/arm64
args:
DENOPS_VERSION: ${DENOPS_VERSION:-main}
cache_from:
- ghcr.io/vim-denops/neovim/cache
- ghcr.io/vim-denops/neovim
cache_to:
- type=registry,ref=ghcr.io/vim-denops/neovim/cache,mode=max