Skip to content

Commit 9acaa44

Browse files
committed
Agregar archivo de licencia MIT y actualizar README con nuevos badges. Eliminar healthcheck y logging de los archivos docker-compose.
1 parent c517922 commit 9acaa44

File tree

4 files changed

+25
-20
lines changed

4 files changed

+25
-20
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 lechuga16
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Servidor Docker KF2
22

3-
![Docker Pulls](https://img.shields.io/docker/pulls/lechuga16/docker-kf2)
4-
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/lechuga16/Docker-KF2/docker-build.yml?branch=main)
5-
![Docker Image Size](https://img.shields.io/docker/image-size/lechuga16/docker-kf2/latest)
3+
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/lechuga16/Docker-KF2/docker-build.yml?branch=main&label=Build)](https://github.com/lechuga16/Docker-KF2/actions)
4+
[![GitHub Release](https://img.shields.io/github/v/release/lechuga16/Docker-KF2?label=Release)](https://github.com/lechuga16/Docker-KF2/releases)
5+
[![License](https://img.shields.io/github/license/lechuga16/Docker-KF2?label=License)](https://github.com/lechuga16/Docker-KF2/blob/main/LICENSE)
6+
[![GitHub Stars](https://img.shields.io/github/stars/lechuga16/Docker-KF2?style=social)](https://github.com/lechuga16/Docker-KF2)
67

78
Servidor dedicado de Killing Floor 2 usando LinuxGSM con soporte SSH ejecutándose en Docker.
89

docker-compose.dev.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ services:
1818
- "${KF2_STEAM_PORT}:20560/udp" # Steam Port (UDP) - Puerto de Steam
1919
- "${KF2_NTP_PORT}:123/udp" # NTP Port (UDP) - Weekly Outbreak only
2020
- "${SSH_PORT}:22/tcp" # SSH Port (TCP) - Para acceso SSH
21-
healthcheck:
22-
test: ["CMD-SHELL", "/app/entrypoint-healthcheck.sh || exit 1"]
23-
interval: 1m
24-
timeout: 1m
25-
start_period: 2m
26-
retries: 1
2721

2822
volumes:
2923
dev_data:

docker-compose.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,6 @@ services:
1616
- "${KF2_STEAM_PORT}:20560/udp" # Steam Port (UDP) - Puerto de Steam
1717
- "${KF2_NTP_PORT}:123/udp" # NTP Port (UDP) - Weekly Outbreak only
1818
- "${SSH_PORT}:22/tcp" # SSH Port (TCP) - Para acceso SSH
19-
healthcheck:
20-
test: ["CMD-SHELL", "/app/entrypoint-healthcheck.sh || exit 1"]
21-
interval: 1m
22-
timeout: 1m
23-
start_period: 2m
24-
retries: 1
25-
logging:
26-
driver: "json-file"
27-
options:
28-
max-size: "10m"
29-
max-file: "3"
3019

3120
volumes:
3221
kf2_data:

0 commit comments

Comments
 (0)