Skip to content

Commit 00c7d85

Browse files
authored
add configuration to use sparkjava sample with Docker Dev Environments feature (#261)
Signed-off-by: Guillaume Lours <[email protected]>
1 parent f716bfb commit 00c7d85

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

sparkjava/.docker/docker-compose.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
services:
2+
sparkjava:
3+
build:
4+
context: sparkjava
5+
target: dev-envs
6+
ports:
7+
- 8080:8080
8+
volumes:
9+
- /var/run/docker.sock:/var/run/docker.sock

sparkjava/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,11 @@ Stopping sparkjava_sparkjava_1 ... done
5959
Removing sparkjava_sparkjava_1 ... done
6060
Removing network sparkjava_default
6161
```
62+
63+
## Use with Docker Development Environments
64+
65+
You can use this sample with the Dev Environments feature of Docker Desktop.
66+
To develop directly sparkjava service inside containers, you just need to use the https git url of the sample:
67+
`https://github.com/docker/awesome-compose/tree/master/sparkjava`
68+
69+
![page](../dev-envs.png)

sparkjava/sparkjava/Dockerfile

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# syntax=docker/dockerfile:1.4
2+
13
FROM --platform=$BUILDPLATFORM maven:3.8.5-eclipse-temurin-17 AS build
24
WORKDIR /workdir/server
35
COPY pom.xml /workdir/server/pom.xml
@@ -7,6 +9,21 @@ COPY src /workdir/server/src
79

810
RUN mvn --batch-mode clean compile assembly:single
911

12+
FROM build AS dev-envs
13+
RUN <<EOF
14+
apt-get update
15+
apt-get install -y --no-install-recommends git
16+
EOF
17+
18+
RUN <<EOF
19+
useradd -s /bin/bash -m vscode
20+
groupadd docker
21+
usermod -aG docker vscode
22+
EOF
23+
# install Docker tools (cli, buildx, compose)
24+
COPY --from=gloursdocker/docker / /
25+
CMD ["java", "-jar", "target/app.jar" ]
26+
1027
FROM eclipse-temurin:17-jre-focal
1128
ARG DEPENDENCY=/workdir/server/target
1229
EXPOSE 8080

0 commit comments

Comments
 (0)