Skip to content

Commit 58eddb0

Browse files
authored
Merge pull request #42 from erseco/upstream-upgrade-alpine
Upgraded Alpine to 3.12
2 parents a9b1969 + 785b15f commit 58eddb0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM alpine:3.11
1+
FROM alpine:3.12
22
LABEL Maintainer="Tim de Pater <[email protected]>" \
3-
Description="Lightweight container with Nginx 1.16 & PHP-FPM 7.3 based on Alpine Linux."
3+
Description="Lightweight container with Nginx 1.18 & PHP-FPM 7.3 based on Alpine Linux."
44

55
# Install packages and remove default server definition
66
RUN apk --no-cache add php7 php7-fpm php7-opcache php7-mysqli php7-json php7-openssl php7-curl \

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Docker PHP-FPM 7.3 & Nginx 1.16 on Alpine Linux
2-
Example PHP-FPM 7.3 & Nginx 1.16 setup for Docker, build on [Alpine Linux](http://www.alpinelinux.org/).
1+
# Docker PHP-FPM 7.3 & Nginx 1.18 on Alpine Linux
2+
Example PHP-FPM 7.3 & Nginx 1.18 setup for Docker, build on [Alpine Linux](http://www.alpinelinux.org/).
33
The image is only +/- 35MB large.
44

55
Repository: https://github.com/TrafeX/docker-php-nginx
@@ -17,7 +17,7 @@ Repository: https://github.com/TrafeX/docker-php-nginx
1717

1818
[![Docker Pulls](https://img.shields.io/docker/pulls/trafex/alpine-nginx-php7.svg)](https://hub.docker.com/r/trafex/alpine-nginx-php7/)
1919
[![Docker image layers](https://images.microbadger.com/badges/image/trafex/alpine-nginx-php7.svg)](https://microbadger.com/images/trafex/alpine-nginx-php7)
20-
![nginx 1.16.1](https://img.shields.io/badge/nginx-1.16-brightgreen.svg)
20+
![nginx 1.18.0](https://img.shields.io/badge/nginx-1.18-brightgreen.svg)
2121
![php 7.3](https://img.shields.io/badge/php-7.3-brightgreen.svg)
2222
![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)
2323

@@ -57,7 +57,7 @@ PHP-FPM configuration:
5757

5858
docker run -v "`pwd`/php-fpm-settings.conf:/etc/php7/php-fpm.d/server.conf" trafex/alpine-nginx-php7
5959

60-
_Note; Because `-v` requires an absolute path I've added `pwd` in the example to return the absolute path to the current directory_
60+
_Note; Because `-v` requires an absolute path I've added `pwd` in the example to return the absolute path to the current directory_
6161

6262

6363
## Adding composer

docker-compose.test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
app:
44
build: .
55
sut:
6-
image: alpine:3.10
6+
image: alpine:3.12
77
depends_on:
88
- app
99
command: /tmp/run_tests.sh

0 commit comments

Comments
 (0)