Skip to content

Commit

Permalink
Add 22HIPAK (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Res42 authored Oct 2, 2022
1 parent a4f8334 commit 114989e
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,6 @@ jobs:

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

- name: Build the ANYK-22HIPAK image
run: docker compose -f anyk-22hipak/docker-compose.yml build
5 changes: 5 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,8 @@ jobs:
run: |
docker compose -f anyk-2258/docker-compose.yml build
docker compose -f anyk-2258/docker-compose.yml push
- name: Push the ANYK-22HIPAK image
run: |
docker compose -f anyk-22hipak/docker-compose.yml build
docker compose -f anyk-22hipak/docker-compose.yml push
1 change: 1 addition & 0 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ DockerHub: <https://hub.docker.com/r/reisingeradam/anyk>.
- ÁNYK and 19HIPA (Local business tax for 2019): `reisingeradam/anyk:latest-19hipa`
- ÁNYK and 20HIPA (Local business tax for 2020): `reisingeradam/anyk:latest-20hipa`
- ÁNYK and 21HIPA (Local business tax for 2021): `reisingeradam/anyk:latest-21hipa`
- ÁNYK and 22HIPAK (Local business tax for 2022): `reisingeradam/anyk:latest-22hipak`
- ANYK and IGAZOL (Tax agency certificates): `reisingeradam/anyk:latest-igazol`
- ANYK and 2258 (Form 58 for 2022): `reisingeradam/anyk:latest-2258`

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ DockerHub: <https://hub.docker.com/r/reisingeradam/anyk>
- ÁNYK és 19HIPA (2019-es Helyi iparűzési adó): `reisingeradam/anyk:latest-19hipa`
- ÁNYK és 20HIPA (2020-as Helyi iparűzési adó): `reisingeradam/anyk:latest-20hipa`
- ÁNYK és 21HIPA (2021-es Helyi iparűzési adó): `reisingeradam/anyk:latest-21hipa`
- ÁNYK és 22HIPAK (2022-es Helyi iparűzési adó): `reisingeradam/anyk:latest-22hipak`
- ANYK és IGAZOL (NAV igazolások: jövedelemigazolás, nemleges adóigazolás, stb): `reisingeradam/anyk:latest-igazol`
- ANYK és 2258 (2022-es 58-as nyomtatvány): `reisingeradam/anyk:latest-2258`

Expand Down
8 changes: 8 additions & 0 deletions anyk-22hipak/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 22HIPAK plugin for ANYK
RUN wget https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvanykitolto_programok_nav/22hipak/nav_22hipak -O ~/NAV_22HIPAK.jar \
# -s: silent (non-gui) install
&& java -jar ~/NAV_22HIPAK.jar -s \
&& rm ~/NAV_22HIPAK.jar
10 changes: 10 additions & 0 deletions anyk-22hipak/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-22hipak
ports:
- "3390:3389"
# - "2222:22"
shm_size: 1g

0 comments on commit 114989e

Please sign in to comment.