https://github.com/keachi/docker-piwigo
Host and share your photos with Piwigo
https://github.com/keachi/docker-piwigo
docker docker-image php
Last synced: 2 months ago
JSON representation
Host and share your photos with Piwigo
- Host: GitHub
- URL: https://github.com/keachi/docker-piwigo
- Owner: keachi
- Created: 2017-06-30T11:59:23.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-17T13:21:52.000Z (over 7 years ago)
- Last Synced: 2025-06-13T07:05:38.233Z (about 1 year ago)
- Topics: docker, docker-image, php
- Language: Makefile
- Homepage: http://www.piwigo.org/
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Piwigo
Host and share your photos with Piwigo.
Piwigo is photo gallery software for the web, built by an active community of users and developers.
Extensions make Piwigo easily customizable. Icing on the cake, Piwigo is free and opensource.
Browse the demo to discover Piwigo features on gallery side and change graphical theme on the fly.
## ENVIRONMENT
### DATABASE
* **MYSQL\_HOST**:
MySQL Server.
Default: ``db``,
Possible Values: "FQDN or IP"
* **MYSQL\_USER**:
MySQL User.
Default: ``piwigo``,
Possible Values: "<string>"
* **MYSQL\_PASSWORD**:
MySQL Password.
Default: "<empty>",
Possible Values: "<string>"
* **MYSQL\_BASE**:
MySQL Database.
Default: ``piwigo``,
Possible Values: "<string>"
* **MYSQL\_PREFIX**:
MySQL Table Prefix.
Default: "<empty>",
Possible Values: "<string>"
## DOCKER COMPOSE
```YAML
version: '2'
volumes:
db:
data:
upload:
services:
db:
image: mariadb
restart: always
volumes:
- db:/var/lib/mysql
env_file:
- db.env
app:
image: keachi/piwigo
restart: always
links:
- db
depends_on:
- db
expose:
- 80/tcp
volumes:
- data:/var/www/html/_data
- upload:/var/www/html/upload
```