1 Commits

Author SHA1 Message Date
8c138a7485 Update nginx Docker tag to v1.27.0 2025-10-22 18:35:56 +00:00
5 changed files with 20 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
name: Hello world
on:
- push
jobs:
say-hello:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Print hello
run: echo "Hello, world! from Gitea Actions"

View File

@@ -4,7 +4,7 @@ on:
push: push:
branches: branches:
- main - main
pull_request_target: pull_request:
types: [opened, synchronize, reopened, closed] types: [opened, synchronize, reopened, closed]
env: env:

1
asd.txt Normal file
View File

@@ -0,0 +1 @@
Random file, ami remélhetőleg megjelenik

View File

@@ -1,8 +1,8 @@
version: "3.9" version: "3.9"
services: services:
web: web:
image: nginx:1.26.1-alpine3.19-slim image: nginx:1.27.0-alpine3.19-slim
ports: ports:
- "81" - "80"
volumes: volumes:
- ./html:/usr/share/nginx/html:ro - ./html:/usr/share/nginx/html:ro

View File

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