Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • infrastruktur/ansible-warpzone
  • specki/ansible-warpzone
2 results
Show changes
Commits on Source (56)
Showing
with 25 additions and 24 deletions
......@@ -45,7 +45,8 @@
- wget
- psmisc
- tree
- tmux
- tmux
- mosh
- name: deploy sshd config
template: src=sshd_config.j2 dest=/etc/ssh/sshd_config
......
......@@ -33,7 +33,7 @@ LogLevel INFO
# Authentication:
LoginGraceTime 120
PermitRootLogin without-password
PermitRootLogin prohibit-password
StrictModes yes
RSAAuthentication yes
......
FROM metabase/metabase:v0.46.6.2
FROM metabase/metabase:v0.46.6.4
RUN mkdir /data/ && wget https://crowdsec-statics-assets.s3-eu-west-1.amazonaws.com/metabase_sqlite.zip && unzip metabase_sqlite.zip -d /data/
\ No newline at end of file
FROM node:19-alpine
FROM node:21-alpine
RUN apk update \
&& apk upgrade \
......
FROM golang:1.13.5
FROM golang:1.21.6
RUN go get github.com/ThoreKr/syncrepl_exporter
......
......@@ -4,7 +4,7 @@ services:
app:
image: esphome/esphome:2022.10
image: esphome/esphome:2023.12
restart: always
volumes:
- "{{ basedir }}/config/:/config"
......
......@@ -4,7 +4,7 @@ services:
app:
image: grafana/grafana:10.1.5
image: grafana/grafana:10.2.3
restart: always
volumes:
- "{{ basedir }}/grafana.ini:/etc/grafana/grafana.ini"
......
......@@ -4,7 +4,7 @@ version: "2.1"
services:
app:
image: lscr.io/linuxserver/heimdall:2.5.6
image: lscr.io/linuxserver/heimdall:2.5.8
restart: always
environment:
- PUID=1000
......
......@@ -5,7 +5,7 @@ services:
app:
image: homeassistant/home-assistant:2023.10
image: homeassistant/home-assistant:2024.1
restart: always
ports:
- "{{ int_ip4 }}:{{ homematic_callback_port }}:{{ homematic_callback_port }}"
......@@ -26,7 +26,7 @@ services:
influxdb:
image: influxdb:2.7.1
image: influxdb:2.7.5
restart: always
ports:
- "{{ int_ip4 }}:{{ influxdb_port }}:8086"
......
......@@ -9,7 +9,7 @@ version: "3"
services:
app:
image: nodered/node-red:3.0.2
image: nodered/node-red:3.1.3
restart: always
volumes:
- "{{ basedir }}/data:/data"
......
......@@ -5,7 +5,7 @@ services:
app:
image: homeassistant/home-assistant:2023.10.3
image: homeassistant/home-assistant:2024.1.2
restart: always
volumes:
- "/etc/localtime:/etc/localtime:ro"
......@@ -24,7 +24,7 @@ services:
influxdb:
image: influxdb:2.7.1
image: influxdb:2.7.5
restart: always
ports:
- "{{ int_ip4 }}:{{ influxdb_port }}:8086"
......
......@@ -5,7 +5,7 @@ services:
app:
image: prom/prometheus:v2.45.0
image: prom/prometheus:v2.48.1
restart: always
ports:
- 9090:9090
......@@ -27,7 +27,7 @@ services:
- web
snmp:
image: quay.io/prometheus/snmp-exporter:v0.21.0
image: quay.io/prometheus/snmp-exporter:v0.25.0
restart: always
......
......@@ -5,7 +5,7 @@ services:
app:
image: linuxserver/unifi-controller:7.3.83
image: linuxserver/unifi-controller:7.5.187
restart: always
ports:
- 8443:8443
......
......@@ -4,7 +4,7 @@ version: "2.4"
services:
app:
image: gitea/gitea:1.19.0
image: gitea/gitea:1.21.3
restart: always
depends_on:
- db
......
......@@ -4,7 +4,7 @@ services:
redis:
image: redis:7.2.1
image: redis:7.2.4
restart: always
networks:
- default
......@@ -27,7 +27,7 @@ services:
app:
image: nextcloud:27.1.3-apache
image: nextcloud:28.0.1-apache
restart: always
volumes:
- /srv/nextcloud/data/:/var/www/html/
......
......@@ -3,7 +3,7 @@ version: "3"
services:
coturn:
image: coturn/coturn:4.6.1
image: coturn/coturn:4.6.2
restart: always
command:
- turnserver
......
FROM php:8.2.8-apache-bookworm
FROM php:8.3.1-apache-bookworm
# php-gd modul für dw2pdf plugin
RUN apt-get update && apt-get install -y \
......
......@@ -5,7 +5,7 @@ services:
app:
image: gitlab/gitlab-ce:16.1.5-ce.0
image: gitlab/gitlab-ce:16.7.0-ce.0
restart: always
ports:
- "444:22"
......
FROM jordan/icinga2:2.13.7
FROM jordan/icinga2:2.14.0
# Install additional Packages
RUN apt-get update \
......
FROM python:3.9-alpine3.13
FROM python:3.10-alpine3.13
RUN pip install python-keycloak
......