14 Commits

Author SHA1 Message Date
e0441565b9 Update docker-compose.yaml 2025-10-22 21:49:56 +02:00
29774438a5 Update docker-compose.yaml 2025-10-22 21:48:11 +02:00
15828ec85a Merge branch 'main' into renovate-bot-patch-22 2025-10-22 21:45:43 +02:00
3c198a674d Add new container 2025-10-22 21:43:29 +02:00
c4c9b3f9ea Merge pull request 'Update html/index.html' (#7) from renovate-bot/static.kovagoadi.hu:renovate-bot-patch-2 into main
Reviewed-on: kovagoadi.hu/static.kovagoadi.hu#7
2025-10-22 21:40:44 +02:00
ec9e75fe3f Update html/index.html 2025-10-22 21:38:40 +02:00
b259eab108 Update html/index.html 2025-10-22 21:35:15 +02:00
202af252c8 Merge pull request 'Update html/index.html' (#6) from renovate-bot/static.kovagoadi.hu:renovate-bot-patch-1 into main
Reviewed-on: kovagoadi.hu/static.kovagoadi.hu#6
Reviewed-by: kovagoadi <kovagoadi@kovagoadi.hu>
2025-10-22 21:33:19 +02:00
927741992d Update html/index.html 2025-10-22 21:17:06 +02:00
2ca0c5c8e4 Merge pull request 'Configure Renovate' (#3) from renovate/configure into main
Reviewed-on: kovagoadi.hu/static.kovagoadi.hu#3
2025-10-22 20:33:38 +02:00
cdf57a8b14 Add renovate.json 2025-10-22 18:32:00 +00:00
d4475db152 Merge pull request 'Clean workflow' (#2) from clean-workflow into main
Reviewed-on: kovagoadi.hu/static.kovagoadi.hu#2
2025-10-22 12:26:40 +02:00
cc3c534474 Clean workflow 2025-10-22 12:24:30 +02:00
eecb07b6f2 Merge pull request 'Added older version' (#1) from testing into main
Reviewed-on: kovagoadi.hu/static.kovagoadi.hu#1
2025-10-22 12:19:30 +02:00
4 changed files with 14 additions and 6 deletions

View File

@@ -70,10 +70,6 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: asd
run:
ls -alh
- name: Sync files via scp - name: Sync files via scp
uses: appleboy/scp-action@master uses: appleboy/scp-action@master
with: with:
@@ -84,7 +80,6 @@ jobs:
source: "./" source: "./"
target: "${{ needs.prepare_deployment_vars.outputs.deploy_path }}" target: "${{ needs.prepare_deployment_vars.outputs.deploy_path }}"
#target: "/tmp/app/main" #target: "/tmp/app/main"
debug: true
# The 'exclude' parameter is supported and should be kept # The 'exclude' parameter is supported and should be kept
# exclude: | # exclude: |
# .git/ # .git/

View File

@@ -6,3 +6,9 @@ services:
- "80" - "80"
volumes: volumes:
- ./html:/usr/share/nginx/html:ro - ./html:/usr/share/nginx/html:ro
web2:
image: nginx:1.26.1-alpine3.19-slim
ports:
- "82"
volumes:
- ./html:/usr/share/nginx/html:ro

View File

@@ -5,7 +5,8 @@
<title>Helló világ!</title> <title>Helló világ!</title>
</head> </head>
<body> <body>
<h1>Hello, World! 👋</h1> <h1>Sziasztok, emberek! 👋</h1>
<h2>Másik szöveg</h2>
</body> </body>
</html> </html>

6
renovate.json Normal file
View File

@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}