You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a custom image, but it's pretty much a vanilla php one, just with some database extensions installed. The dockerfile is just two lines, which I add directly to the docker compose:
services:
php:
build:
context: .
dockerfile_inline: |
FROM php:8-fpm-alpine
RUN apk add --no-cache postgresql-dev && docker-php-ext-install pdo_pgsql
...
Is there any way to have WUD notify me when there's a new php version available? I'm not really sure how it would look for it though. Some tool to add the original php digest somewhere for WUD to read it? Use a label with the complete version number (would probably want to change that FROM command as well to keep track of what's being used)?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have a custom image, but it's pretty much a vanilla php one, just with some database extensions installed. The dockerfile is just two lines, which I add directly to the docker compose:
Is there any way to have WUD notify me when there's a new php version available? I'm not really sure how it would look for it though. Some tool to add the original php digest somewhere for WUD to read it? Use a label with the complete version number (would probably want to change that FROM command as well to keep track of what's being used)?
Beta Was this translation helpful? Give feedback.
All reactions