Skip to content

Commit be62b51

Browse files
committed
Merge remote-tracking branch 'origin/play-repeat-looping-currentdeps-localfiles-java17' into play-repeat-looping-currentdeps-localfiles-java17
2 parents aee66d8 + c94dac0 commit be62b51

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:17
1+
FROM eclipse-temurin:17-jdk-jammy
22
RUN groupadd -r -g 999 ukulele && useradd -rd /opt/ukulele -g ukulele -u 999 -ms /bin/bash ukulele
33
COPY --chown=ukulele:ukulele build/libs/ukulele.jar /opt/ukulele/ukulele.jar
44
USER ukulele

docker-compose.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ version: "3.7"
22

33
services:
44
ukulele:
5-
image: ghcr.io/freyacodes/ukulele:master
5+
build: . # This tells docker-compose to build the image from the Dockerfile in the current directory
66
restart: always
77
environment:
88
CONFIG_DATABASE: ./db/database # Database location overwrite so mounting works
99
volumes:
1010
- ./ukulele.yml:/opt/ukulele/ukulele.yml
1111
- ./db:/opt/ukulele/db
12+
ports:
13+
- "11111:11111"

0 commit comments

Comments
 (0)