Bot Updating Documentation

pull/64/head
LinuxServer-CI 2022-11-22 19:09:12 +01:00
rodzic dae7a50190
commit 8ae483c7b9
1 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@ -35,12 +35,11 @@ The architectures supported by this image are:
## Application Setup ## Application Setup
Docker image update and recreation of container alone won't update Piwigo version. In order to update Piwigo version, firstly make sure you are using the latest docker image, then go to Admin->Tools->Updates and use the app updater.
* You must create a user and database for piwigo to use in a mysql/mariadb server. * You must create a user and database for piwigo to use in a mysql/mariadb server.
* In the setup page for database, use the ip address rather than hostname.
* A basic nginx configuration file can be found in `/config/nginx/site-confs`, edit the file to enable ssl (port 443 by default), set servername etc.
* Self-signed keys are generated the first time you run the container and can be found in `/config/keys`, if needed, you can replace them with your own. * Self-signed keys are generated the first time you run the container and can be found in `/config/keys`, if needed, you can replace them with your own.
* The easiest way to edit the configuration file is to enable local files editor from the plugins page and use it to configure email settings etc.
* The easiest way to edit the configuration file is to enable local files editor from the plugins page and use it to configure email settings etc."
## Usage ## Usage
@ -60,8 +59,8 @@ services:
- PGID=1000 - PGID=1000
- TZ=Europe/London - TZ=Europe/London
volumes: volumes:
- </path/to/appdata/config>:/config - /path/to/appdata/config:/config
- </path/to/appdata/gallery>:/gallery - /path/to/appdata/gallery:/gallery
ports: ports:
- 80:80 - 80:80
restart: unless-stopped restart: unless-stopped
@ -76,8 +75,8 @@ docker run -d \
-e PGID=1000 \ -e PGID=1000 \
-e TZ=Europe/London \ -e TZ=Europe/London \
-p 80:80 \ -p 80:80 \
-v </path/to/appdata/config>:/config \ -v /path/to/appdata/config:/config \
-v </path/to/appdata/gallery>:/gallery \ -v /path/to/appdata/gallery:/gallery \
--restart unless-stopped \ --restart unless-stopped \
lscr.io/linuxserver/piwigo:latest lscr.io/linuxserver/piwigo:latest
``` ```
@ -105,7 +104,7 @@ Docker images are configured using parameters passed at runtime (such as those a
| Volume | Function | | Volume | Function |
| :----: | --- | | :----: | --- |
| `/config` | Configuration files. | | `/config` | Configuration files. |
| `/gallery` | Image, plugin, & theme storage for Piwigo | | `/gallery` | Image storage for Piwigo |
#### Miscellaneous Options #### Miscellaneous Options
@ -161,6 +160,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
## Versions ## Versions
* **08.11.22:** - Rebase to Alpine 3.16, migrate to s6v3. Move application install to /app/www/public, add migration for existing users. Container updates should now update the application correctly.
* **20.08.22:** - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base)). * **20.08.22:** - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base)).
* **29.06.21:** - Rebase to 3.14, Add php7-zip package * **29.06.21:** - Rebase to 3.14, Add php7-zip package
* **20.05.21:** - Create separate volume for image data * **20.05.21:** - Create separate volume for image data