Upgrade to paheko version 1.3.7 and php:8.2.18-apache-bookworm
This commit is contained in:
parent
5b251f58d0
commit
a9939c3ba4
4 changed files with 18 additions and 13 deletions
|
@ -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."
|
||||
|
||||
|
|
24
README.md
24
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!
|
||||
|
|
|
@ -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
|
||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
|||
PAHEKO_VERSION=1.3.0
|
||||
PAHEKO_VERSION=1.3.7
|
||||
|
|
Loading…
Reference in a new issue