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