Skip to content

Commit

Permalink
upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
SaswatPadhi committed Oct 5, 2024
1 parent 5c105f3 commit 3c019b2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ for optionally customizing compositions via _overrides_.
</a>
</th>
<td align='center'>
<code><sub>2024.9.3_2.0.1</sub></code>
<code><sub>2024.10.1_2.0.1</sub></code>
</td>
<td align='center'>
:heavy_check_mark:
Expand Down Expand Up @@ -533,7 +533,7 @@ for optionally customizing compositions via _overrides_.
</a>
</th>
<td align='center'>
<code><sub>0.53.2</sub></code>
<code><sub>0.53.3</sub></code>
</td>
<td align='center'>
:heavy_check_mark:
Expand Down Expand Up @@ -596,7 +596,7 @@ for optionally customizing compositions via _overrides_.
<td align='center'>
<code><sub>10.11.6</sub></code>
<br>
<code><sub>7.4.0</sub></code>
<code><sub>7.4.1</sub></code>
<br>
<code><sub>20240808...48</sub></code>
<br>
Expand Down Expand Up @@ -988,7 +988,7 @@ for optionally customizing compositions via _overrides_.
</a>
</th>
<td align='center'>
<code><sub>2.11.10</sub></code>
<code><sub>2.11.11</sub></code>
</td>
<td align='center'>
:heavy_check_mark:
Expand Down
7 changes: 5 additions & 2 deletions comp
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,11 @@ do_validate () {
echo -n " $svc"
for bad_attr in devices labels logging ports ; do
if printf '%s\0' "${attrs[@]}" | grep -Fxqz -- $bad_attr ; then
echo ; __error "'$bad_attr' for '$svc' should be in docker_compose.$bad_attr.yml."
return 1
if [ "${1:-}" = "shallow" ] ; then
echo ; __warning "Consider moving '$bad_attr' for '$svc' into docker_compose.$bad_attr.yml."
else
echo ; __error "'$bad_attr' for '$svc' should be in docker_compose.$bad_attr.yml." ; return 1
fi
fi
done
done
Expand Down
2 changes: 1 addition & 1 deletion hass/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ networks:
services:
hass:
hostname: hass
image: padhihomelab/hass:2024.9.3_2.0.1
image: padhihomelab/hass:2024.10.1_2.0.1
restart: unless-stopped

security_opt:
Expand Down
2 changes: 1 addition & 1 deletion navidrome/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ networks:
services:
navidrome:
hostname: navidrome
image: deluan/navidrome:0.53.2
image: deluan/navidrome:0.53.3
restart: unless-stopped

security_opt:
Expand Down
2 changes: 1 addition & 1 deletion nextcloud/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ services:

redis:
hostname: redis
image: redis:7.4.0
image: redis:7.4.1
restart: unless-stopped

security_opt:
Expand Down
2 changes: 1 addition & 1 deletion traefik/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ networks:
services:
traefik:
hostname: traefik
image: traefik:v2.11.10
image: traefik:v2.11.11
restart: unless-stopped

security_opt:
Expand Down

0 comments on commit 3c019b2

Please sign in to comment.