Skip to content

Commit

Permalink
add docker support
Browse files Browse the repository at this point in the history
  • Loading branch information
Athou committed Apr 24, 2023
1 parent 5f37dbc commit ed813f9
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# ignore everything
*

# allow only what we need
!commafeed-server/target/commafeed.jar
!commafeed-server/config.yml.example
25 changes: 23 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,49 @@
name: Java CI

on: [push]
on: [ push ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: ["8", "11", "17"]
java: [ "8", "11", "17" ]

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: "temurin"
cache: "maven"

- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify

- uses: actions/upload-artifact@v3
if: ${{ matrix.java == '8' }}
with:
name: commafeed.jar
path: commafeed-server/target/commafeed.jar

# Docker
- name: Login to Container Registry
if: ${{ github.ref_type == 'tag' && matrix.java == '8' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker build and push
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.ref_type == 'tag' && matrix.java == '8' }}
tags: |
ghcr.io/athou/commafeed:latest
ghcr.io/athou/commafeed:${{ github.ref_name }}
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM openjdk:17-alpine

RUN mkdir -p /commafeed/data
VOLUME /commafeed/data

ENV CF_SESSION_PATH=/commafeed/data/sessions

COPY commafeed-server/target/commafeed.jar .
COPY commafeed-server/config.yml.example config.yml

EXPOSE 8082
CMD ["java", "-Djava.net.preferIPv4Stack=true", "-jar", "commafeed.jar", "server", "config.yml"]
2 changes: 1 addition & 1 deletion commafeed-server/config.yml.example
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ app:

database:
driverClass: org.h2.Driver
url: jdbc:h2:/home/commafeed/db
url: jdbc:h2:/commafeed/data/db
user: sa
password: sa
properties:
Expand Down

0 comments on commit ed813f9

Please sign in to comment.