Skip to content

Commit

Permalink
Add IGAZOL plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
Res42 committed May 31, 2021
1 parent db0d1a1 commit 187173a
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ jobs:

- name: Build the ANYK-20HIPA image
run: docker-compose -f anyk-20hipa/docker-compose.yml build

- name: Build the ANYK-IGAZOL image
run: docker-compose -f anyk-igazol/docker-compose.yml build
7 changes: 6 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,9 @@ jobs:
- name: Push the ANYK-20HIPA image
run: |
docker-compose -f anyk-20hipa/docker-compose.yml build
docker-compose -f anyk-20hipa/docker-compose.yml push
docker-compose -f anyk-20hipa/docker-compose.yml push
- name: Push the ANYK-IGAZOL image
run: |
docker-compose -f anyk-igazol/docker-compose.yml build
docker-compose -f anyk-igazol/docker-compose.yml push
8 changes: 8 additions & 0 deletions anyk-igazol/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM reisingeradam/anyk:latest
LABEL maintainer="Adam Reisinger"

# Download and install IGAZOL plugin for ANYK
RUN wget https://nav.gov.hu/data/cms276234/NAV_IGAZOL.jar -P ~ \
# -s: silent (non-gui) install
&& java -jar ~/NAV_IGAZOL.jar -s \
&& rm ~/NAV_IGAZOL.jar
10 changes: 10 additions & 0 deletions anyk-igazol/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: "3"

services:
anyk:
build: .
image: ${DOCKER_REGISTRY:-reisingeradam}/anyk:latest-igazol
ports:
- "3390:3389"
# - "2222:22"
shm_size: 1g

0 comments on commit 187173a

Please sign in to comment.