-
I use Shaarli since several years and want to move my nginx/php-fpm installation to a Docker one, to simplify maintenance, upgrade and also improve security (I plan to use Docker rootless which I think is more secure). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi, the docker image is maintained (this pull request further bumps the base alpine image version, but I didn't have time to test it yet). The docker-compose file can be considered unmaintained (I don't use it, and other maintainers who do are currently inactive). I guess we should at least update the Both methods are supported in the sense that they are documented, and should work out-of-the-box (if they don't, we haven't received any bug report stating so). If you want to try the updated docker-compose from the PR above and report back, we could merge the updated version. |
Beta Was this translation helpful? Give feedback.
Hi,
the docker image is maintained (this pull request further bumps the base alpine image version, but I didn't have time to test it yet).
The docker-compose file can be considered unmaintained (I don't use it, and other maintainers who do are currently inactive). I guess we should at least update the
traefik:1.7-alpine
image. Traefik 1.x images don't seem to be available anymore (https://hub.docker.com/_/traefik/) so it means upgrading to at least 2.x with potential breaking changes - hence some testing/adjustment would be needed. Someone attempted it but closed their PR before it could be reviewed.Both methods are supported in the sense that they are documented, and should work out-of-…