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 (15)
......@@ -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: homeassistant/home-assistant:2023.6.1
image: homeassistant/home-assistant:2023.10.3
restart: always
volumes:
- "/etc/localtime:/etc/localtime:ro"
......
......@@ -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.10.0
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 \
......