-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimages.docker-compose.yml
51 lines (51 loc) · 1.15 KB
/
images.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
version: '3.9'
services:
jammy-aio:
image: devcontainer/aio:latest
build:
dockerfile: dev.dockerfile
target: dev-aio
platforms:
- "linux/amd64"
jammy-node14:
image: devcontainer/node:jammy-fe
build:
dockerfile: dev.dockerfile
target: frontend-dev
platforms:
- "linux/amd64"
args:
- OS_DIST=jammy
jammy-jdk17:
image: devcontainer/java:jammy-17
build:
dockerfile: dev.dockerfile
target: java-dev
platforms:
- "linux/amd64"
args:
- OS_DIST=jammy
- JDK_VERSION=17
- INSTALL_JDK_SRC=1
jammy-jdk15:
image: devcontainer/java:jammy-15
build:
dockerfile: dev.dockerfile
target: java-dev
platforms:
- "linux/amd64"
args:
- OS_DIST=jammy
- JDK_VERSION=15
- INSTALL_JDK_SRC=1
jammy-jdk8:
image: devcontainer/java:jammy-8
build:
dockerfile: dev.dockerfile
target: java-dev
platforms:
- "linux/amd64"
args:
- OS_DIST=jammy
- JDK_VERSION=8
- INSTALL_JDK_SRC=1