Skip to content

Commit

Permalink
Add 2258 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
Res42 authored Oct 2, 2022
1 parent deaae13 commit a4f8334
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@ jobs:

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

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

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

- name: Build the ANYK-2258 image
run: docker compose -f anyk-2258/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 @@ -40,7 +40,7 @@ jobs:
run: |
docker compose -f anyk-20hipa/docker-compose.yml build
docker compose -f anyk-20hipa/docker-compose.yml push
- name: Push the ANYK-21HIPA image
run: |
docker compose -f anyk-21hipa/docker-compose.yml build
Expand All @@ -50,3 +50,8 @@ jobs:
run: |
docker compose -f anyk-igazol/docker-compose.yml build
docker compose -f anyk-igazol/docker-compose.yml push
- name: Push the ANYK-2258 image
run: |
docker compose -f anyk-2258/docker-compose.yml build
docker compose -f anyk-2258/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 @@ -30,6 +30,7 @@ DockerHub: <https://hub.docker.com/r/reisingeradam/anyk>.
- ÁNYK and 20HIPA (Local business tax for 2020): `reisingeradam/anyk:latest-20hipa`
- ÁNYK and 21HIPA (Local business tax for 2021): `reisingeradam/anyk:latest-21hipa`
- ANYK and IGAZOL (Tax agency certificates): `reisingeradam/anyk:latest-igazol`
- ANYK and 2258 (Form 58 for 2022): `reisingeradam/anyk:latest-2258`

## How to use

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ DockerHub: <https://hub.docker.com/r/reisingeradam/anyk>
- Á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`
- 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`

## Használat

Expand Down
2 changes: 1 addition & 1 deletion anyk-20kata/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM reisingeradam/anyk:latest
LABEL maintainer="Adam Reisinger"

# Download and install 20KATA plugin for ANYK
RUN wget https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvanykitolto_programok_nav/20KATA/NAV_20KATA.jar -O ~/NAV_20KATA.jar \
RUN wget https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvanykitolto_programok_nav/20KATA/NAV_20KATA -O ~/NAV_20KATA.jar \
# -s: silent (non-gui) install
&& java -jar ~/NAV_20KATA.jar -s \
&& rm ~/NAV_20KATA.jar
8 changes: 8 additions & 0 deletions anyk-2258/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 2258 plugin for ANYK
RUN wget https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvanykitolto_programok_nav/2258/nav_2258 -O ~/NAV_2258.jar \
# -s: silent (non-gui) install
&& java -jar ~/NAV_2258.jar -s \
&& rm ~/NAV_2258.jar
10 changes: 10 additions & 0 deletions anyk-2258/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-2258
ports:
- "3390:3389"
# - "2222:22"
shm_size: 1g
2 changes: 1 addition & 1 deletion anyk-igazol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM reisingeradam/anyk:latest
LABEL maintainer="Adam Reisinger"

# Download and install IGAZOL plugin for ANYK
RUN wget https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvanykitolto_programok_nav/igazol/NAV_igazol.jar -O ~/NAV_IGAZOL.jar \
RUN wget https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvanykitolto_programok_nav/igazol/NAV_igazol -O ~/NAV_IGAZOL.jar \
# -s: silent (non-gui) install
&& java -jar ~/NAV_IGAZOL.jar -s \
&& rm ~/NAV_IGAZOL.jar

0 comments on commit a4f8334

Please sign in to comment.