diff --git a/Dockerfile b/Dockerfile index d417675..3493510 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2.10-apache-bullseye +FROM php:8.2.18-apache-bookworm LABEL Maintainer="Libretic" LABEL Description="Unofficial Docker image for Paheko." diff --git a/README.md b/README.md index 0cd6f79..b8c390e 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,10 @@ cd paheko_docker_image_builder * Edit version file to choose your version of paheko -Content of version file for paheko version 1.3.0: +Content of version file for paheko version 1.3.7: ``` -PAHEKO_VERSION=1.3.0 +PAHEKO_VERSION=1.3.7 ``` * Build and tag the image @@ -37,7 +37,8 @@ docker image ls | grep paheko ## Adapt docker-compose.yml to fit your needs -For an example of custom paheko config see [git repository](https://git.libretic.fr/libretic/paheko_docker_image_builder). +For an example of custom paheko config see our [builder git repository](https://git.libretic.fr/libretic/paheko_docker_image_builder) or +our [ansible role to deploy paheko with this docker image](https://git.libretic.fr/libretic/ansible-role-docker_paheko). For an example of custom php.ini, see [php docker image](https://hub.docker.com/_/php). You may have to adjust `post_max_size` and `upload_max_filesize` to fit your needs. @@ -48,10 +49,9 @@ This example assumes that my.paheko.fqdn is resolved to the address of a reverse traefik container on port named "web" (see: [traefik](https://github.com/traefik/traefik) and [traefik configuration](https://git.libretic.fr/libretic/ansible-role-docker_host)) ``` -version: '3.1' services: paheko: - image: libretic/paheko:1.3.0 + image: libretic/paheko:1.3.7 restart: always volumes: - ./config.local.php:/var/www/paheko/config.local.php @@ -79,10 +79,9 @@ This example assumes that my.paheko.fqdn is resolved to the address of a reverse the host running paheko container. ``` -version: '3.1' services: paheko: - image: libretic/paheko:1.3.0 + image: libretic/paheko:1.3.7 restart: always volumes: - ./config.local.php:/var/www/paheko/config.local.php @@ -98,7 +97,7 @@ services: * To start the container ``` -docker-compose up -d +docker compose up -d ``` Then open `https://my.paheko.fqdn` in your browser. @@ -107,10 +106,17 @@ Then open `https://my.paheko.fqdn` in your browser. * To stop the container ``` -docker-compose down +docker compose down ``` +## Change log + +* [2024-04-14] + * Upgrade to Paheko version 1.3.7 + * Changed base image to php:8.2.18-apache-bookworm + + ## Acknowledgements [Paheko](https://paheko.cloud/) is free (FOSS) software. Thanks to Paheko team! diff --git a/docker-compose.yml b/docker-compose.yml index 077f35b..cd60d3b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,6 @@ -version: '3.1' services: paheko: - image: libretic/paheko:1.3.0 + image: libretic/paheko:1.3.7 restart: always volumes: - ./config.local.php:/var/www/paheko/config.local.php diff --git a/version b/version index 0e495ed..b794983 100644 --- a/version +++ b/version @@ -1 +1 @@ -PAHEKO_VERSION=1.3.0 +PAHEKO_VERSION=1.3.7