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 (23)
Showing
with 22 additions and 14 deletions
......@@ -9,7 +9,7 @@
binary_sensor:
- platform: gpio
pi2n:
pin:
number: GPIO13
mode: INPUT_PULLUP
inverted: True
......
......@@ -4,7 +4,7 @@ services:
app:
image: grafana/grafana:9.5.6
image: grafana/grafana:10.1.5
restart: always
volumes:
- "{{ basedir }}/grafana.ini:/etc/grafana/grafana.ini"
......
......@@ -5,7 +5,7 @@ services:
app:
image: homeassistant/home-assistant:2023.6
image: homeassistant/home-assistant:2023.10
restart: always
ports:
- "{{ int_ip4 }}:{{ homematic_callback_port }}:{{ homematic_callback_port }}"
......
......@@ -5,7 +5,7 @@ services:
app:
image: mbentley/omada-controller:5.9
image: mbentley/omada-controller:5.12
restart: always
ports:
- {{ omada_port_http }}:8088
......
......@@ -5,7 +5,7 @@ services:
app:
image: homeassistant/home-assistant:2023.6.1
image: homeassistant/home-assistant:2023.10.3
restart: always
volumes:
- "/etc/localtime:/etc/localtime:ro"
......
......@@ -4,7 +4,7 @@ services:
redis:
image: redis:7.0.10
image: redis:7.2.1
restart: always
networks:
- default
......@@ -12,7 +12,7 @@ services:
mysql:
image: mariadb:10.10.2
image: mariadb:11.1.2
restart: always
volumes:
- /srv/nextcloud/db/:/var/lib/mysql
......@@ -27,7 +27,7 @@ services:
app:
image: nextcloud:25.0.5-apache
image: nextcloud:27.1.3-apache
restart: always
volumes:
- /srv/nextcloud/data/:/var/www/html/
......@@ -45,6 +45,7 @@ services:
OVERWRITEPROTOCOL: https
OVERWRITECLIURL: https://{{ domain }}
OVERWRITEHOST: {{ domain }}
APPIMAGE_EXTRACT_AND_RUN: 1
labels:
- traefik.enable=true
- traefik.http.routers.{{ servicename }}.rule=Host(`{{ domain }}`)
......
......@@ -5,7 +5,7 @@ services:
app:
image: gitlab/gitlab-ce:15.11.5-ce.0
image: gitlab/gitlab-ce:15.11.13-ce.0
restart: always
ports:
- "444:22"
......@@ -35,7 +35,7 @@ services:
dind:
image: docker:20-dind
image: docker:24-dind
restart: always
privileged: true
environment:
......
......@@ -24,6 +24,13 @@
with_items:
- docker-compose.yml
- mysql-utf8.cnf
register: configs
- name: stop hackmd docker
docker_compose:
project_src: /srv/hackmd
state: absent
when: configs.changed
- name: start hackmd docker
docker_compose:
......
......@@ -3,7 +3,7 @@ version: "3"
services:
app:
image: quay.io/hedgedoc/hedgedoc:1.9.7-debian
image: quay.io/hedgedoc/hedgedoc:1.9.9-debian
restart: always
depends_on:
- db
......
......@@ -45,7 +45,7 @@ services:
restarter:
image: docker:20.10
image: docker:24.0
restart: always
command: [ "/bin/sh", "-c", "while true; do sleep 1h; docker restart matterbridge_cw_1; docker restart matterbridge_wz_1; done" ]
volumes:
......
......@@ -3,7 +3,7 @@ version: "3"
services:
app:
image: ghcr.io/freifunkmuc/wg-access-server:v0.8.4
image: ghcr.io/freifunkmuc/wg-access-server:v0.10.1
restart: always
cap_add:
- NET_ADMIN
......
FROM wordpress:6.2.0-php8.2-apache
FROM wordpress:6.3.2-php8.2-apache
# install the PHP extensions we need
RUN set -x \
......