Update image tags

This commit is contained in:
BatchAccount 1001 2023-08-02 22:52:37 +02:00
parent c28ed6dad0
commit adc73208d5
11 changed files with 55 additions and 23 deletions

View File

@ -3,7 +3,7 @@ version: "3.0"
services: services:
updater: updater:
image: qmcgaw/ddns-updater:v2.4.1 image: qmcgaw/ddns-updater:v2.5.0
restart: unless-stopped restart: unless-stopped
environment: environment:
CONFIG: '${CONFIG}' CONFIG: '${CONFIG}'

View File

@ -3,7 +3,7 @@ version: "3.0"
services: services:
proxy: proxy:
image: visibilityspots/cloudflared:2023.2.1-alpine-3.17 image: visibilityspots/cloudflared:v2023.7.3
restart: unless-stopped restart: unless-stopped
environment: environment:
UPSTREAM1: '${UPSTREAM1}' UPSTREAM1: '${UPSTREAM1}'

View File

@ -2,7 +2,7 @@ version: "3.0"
services: services:
endlessh: endlessh:
image: lscr.io/linuxserver/endlessh:amd64-dfe44eb2-ls41 image: lscr.io/linuxserver/endlessh:dfe44eb2-ls63
restart: unless-stopped restart: unless-stopped
environment: environment:
PUID: 1000 PUID: 1000

View File

@ -6,7 +6,7 @@ networks:
services: services:
server: server:
image: gitea/gitea:1.17.3 image: gitea/gitea:1.20.2
restart: always restart: always
environment: environment:
USER_UID: 1000 USER_UID: 1000

View File

@ -6,7 +6,7 @@ networks:
services: services:
server: server:
image: kanboard/kanboard:v1.2.24 image: kanboard/kanboard:v1.2.32
restart: always restart: always
environment: environment:
DATABASE_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db/${POSTGRES_DB} DATABASE_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db/${POSTGRES_DB}

View File

@ -5,10 +5,9 @@
version: '2.2' version: '2.2'
services: services:
# External dependencies # External dependencies
redis: redis:
image: redis:7.0.5-alpine image: redis:7.0.12-alpine3.18
restart: always restart: always
volumes: volumes:
- redis_data:/data - redis_data:/data
@ -19,13 +18,15 @@ services:
# Core services # Core services
front: front:
image: ${DOCKER_ORG:-mailu}/${DOCKER_PREFIX:-}nginx:${MAILU_VERSION:-1.9} image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}nginx:${MAILU_VERSION:-2.0}
restart: always restart: always
env_file: mailu.env env_file: mailu.env
environment: environment:
ADMIN: "false" ADMIN: "false"
logging: logging:
driver: json-file driver: journald
options:
tag: mailu-front
ports: ports:
- 172.16.10.11:8004:80 - 172.16.10.11:8004:80
- 172.16.10.11:8104:443 - 172.16.10.11:8104:443
@ -45,7 +46,7 @@ services:
- 192.168.203.254 - 192.168.203.254
resolver: resolver:
image: ${DOCKER_ORG:-mailu}/${DOCKER_PREFIX:-}unbound:${MAILU_VERSION:-1.9} image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}unbound:${MAILU_VERSION:-2.0}
env_file: mailu.env env_file: mailu.env
restart: always restart: always
networks: networks:
@ -53,9 +54,13 @@ services:
ipv4_address: 192.168.203.254 ipv4_address: 192.168.203.254
admin: admin:
image: ${DOCKER_ORG:-mailu}/${DOCKER_PREFIX:-}admin:${MAILU_VERSION:-1.9} image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}admin:${MAILU_VERSION:-2.0}
restart: always restart: always
env_file: mailu.env env_file: mailu.env
logging:
driver: journald
options:
tag: mailu-admin
ports: ports:
- 127.0.0.1:8005:80 - 127.0.0.1:8005:80
volumes: volumes:
@ -68,9 +73,13 @@ services:
- 192.168.203.254 - 192.168.203.254
imap: imap:
image: ${DOCKER_ORG:-mailu}/${DOCKER_PREFIX:-}dovecot:${MAILU_VERSION:-1.9} image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}dovecot:${MAILU_VERSION:-2.0}
restart: always restart: always
env_file: mailu.env env_file: mailu.env
logging:
driver: journald
options:
tag: mailu-imap
volumes: volumes:
- dovecot_mail:/mail - dovecot_mail:/mail
- dovecot_overrides:/overrides:ro - dovecot_overrides:/overrides:ro
@ -81,9 +90,13 @@ services:
- 192.168.203.254 - 192.168.203.254
smtp: smtp:
image: ${DOCKER_ORG:-mailu}/${DOCKER_PREFIX:-}postfix:${MAILU_VERSION:-1.9} image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}postfix:${MAILU_VERSION:-2.0}
restart: always restart: always
env_file: mailu.env env_file: mailu.env
logging:
driver: journald
options:
tag: mailu-smtp
volumes: volumes:
- postfix_mailqueue:/queue - postfix_mailqueue:/queue
- postfix_overrides:/overrides:ro - postfix_overrides:/overrides:ro
@ -93,8 +106,19 @@ services:
dns: dns:
- 192.168.203.254 - 192.168.203.254
oletools:
image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}oletools:${MAILU_VERSION:-2.0}
hostname: oletools
restart: always
networks:
- noinet
depends_on:
- resolver
dns:
- 192.168.203.254
antispam: antispam:
image: ${DOCKER_ORG:-mailu}/${DOCKER_PREFIX:-}rspamd:${MAILU_VERSION:-1.9} image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}rspamd:${MAILU_VERSION:-2.0}
hostname: antispam hostname: antispam
restart: always restart: always
env_file: mailu.env env_file: mailu.env
@ -103,18 +127,21 @@ services:
- rspamd_overrides:/etc/rspamd/override.d:ro - rspamd_overrides:/etc/rspamd/override.d:ro
depends_on: depends_on:
- front - front
- redis
- oletools
- resolver - resolver
dns: dns:
- 192.168.203.254 - 192.168.203.254
# Optional services # Optional services
webdav: webdav:
image: ${DOCKER_ORG:-mailu}/${DOCKER_PREFIX:-}radicale:${MAILU_VERSION:-1.9} image: ${DOCKER_ORG:-ghcr.io/mailu}/${DOCKER_PREFIX:-}radicale:${MAILU_VERSION:-2.0}
restart: always restart: always
env_file: mailu.env env_file: mailu.env
volumes: volumes:
- dav_data:/data - dav_data:/data
networks:
- radicale
depends_on: depends_on:
- resolver - resolver
dns: dns:
@ -141,3 +168,8 @@ networks:
driver: default driver: default
config: config:
- subnet: 192.168.203.0/24 - subnet: 192.168.203.0/24
radicale:
driver: bridge
noinet:
driver: bridge
internal: true

View File

@ -6,7 +6,7 @@ networks:
services: services:
db: db:
image: mariadb:10.10.2 image: mariadb:11.0.2
restart: unless-stopped restart: unless-stopped
environment: environment:
MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD} MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD}
@ -19,7 +19,7 @@ services:
- db_data:/var/lib/mysql - db_data:/var/lib/mysql
wordpress: wordpress:
image: wordpress:6.1.1 image: wordpress:6.2.2
restart: unless-stopped restart: unless-stopped
environment: environment:
WORDPRESS_DB_HOST: db WORDPRESS_DB_HOST: db

View File

@ -2,7 +2,7 @@ version: "3.0"
services: services:
swag: swag:
image: lscr.io/linuxserver/swag:1.32.0 image: lscr.io/linuxserver/swag:2.6.0
restart: unless-stopped restart: unless-stopped
cap_add: cap_add:
- NET_ADMIN - NET_ADMIN

View File

@ -3,7 +3,7 @@ version: "3.0"
services: services:
openldap: openldap:
image: docker.io/bitnami/openldap:2.6.3-debian-11-r40 image: docker.io/bitnami/openldap:2.6.6-debian-11-r0
restart: unless-stopped restart: unless-stopped
env_file: openldap.env env_file: openldap.env
volumes: volumes:

View File

@ -2,7 +2,7 @@ version: "3.0"
services: services:
vaultwarden: vaultwarden:
image: vaultwarden/server:1.27.0-alpine image: vaultwarden/server:1.29.1-alpine
restart: always restart: always
environment: environment:
ADMIN_TOKEN: ${ADMIN_TOKEN} ADMIN_TOKEN: ${ADMIN_TOKEN}

View File

@ -6,7 +6,7 @@ networks:
services: services:
redis: redis:
image: redis:7.0.8-alpine3.17 image: redis:7.0.12-alpine3.18
restart: always restart: always
networks: networks:
- yopass - yopass
@ -14,7 +14,7 @@ services:
- redis:/data - redis:/data
yopass: yopass:
image: jhaals/yopass:11.4.6 image: jhaals/yopass:11.5.1
restart: always restart: always
command: "--database redis --redis redis://redis:6379/0 --port 8080" command: "--database redis --redis redis://redis:6379/0 --port 8080"
networks: networks: