Skip to content

Commit 2d20741

Browse files
authored
Merge pull request #7 from iiska/exif-extension
Install php7-exif extensions
2 parents 8baab9f + 4277184 commit 2d20741

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ RUN \
3636
--repository http://nl.alpinelinux.org/alpine/edge/community \
3737
php7-apcu \
3838
php7-cgi \
39+
php7-exif \
3940
php7-gd \
4041
php7-mysqlnd \
4142
php7-pear \

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ docker create \
2727
-v /etc/localtime:/etc/localtime:ro \
2828
-v <path to data>:/config \
2929
-e PGID=<gid> -e PUID=<uid> \
30-
-e TZ=<timezone>
30+
-e TZ=<timezone>
3131
-p 80:80 \
3232
linuxserver/piwigo
3333
```
3434

3535
## Parameters
3636

37-
`The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side.
37+
`The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side.
3838
For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container.
3939
So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080
4040
http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.`
@@ -60,11 +60,11 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel
6060
uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)
6161
```
6262

63-
## Setting up the application
63+
## Setting up the application
6464

6565
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....
6666

67-
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..
67+
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..
6868
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.
6969

7070
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....
@@ -75,7 +75,7 @@ The easiest way to edit the configuration file is to enable local files editor f
7575
* To update piwigo if required, update via the webui
7676
* To monitor the logs of the container in realtime `docker logs -f piwigo`.
7777

78-
* container version number
78+
* container version number
7979

8080
`docker inspect -f '{{ index .Config.Labels "build_version" }}' piwigo`
8181

@@ -85,6 +85,7 @@ The easiest way to edit the configuration file is to enable local files editor f
8585

8686
## Versions
8787

88+
+ **20.04.17:** Add php7-exif package, thanks iiska
8889
+ **23.02.17:** Rebase to alpine linux 3.5 and nginx.
8990
+ **14.10.16:** Add version layer information.
9091
+ **10.09.16:** Add layer badges to README.

0 commit comments

Comments
 (0)