Skip to content

Commit

Permalink
#539: Update base images to debian jessie where applicable
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Nov 25, 2017
1 parent c1af0ca commit 897039a
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions plugins/lando-services/node/node.js
Expand Up @@ -16,13 +16,17 @@ module.exports = function(lando) {
* Supported versions for node
*/
var versions = [
'9',
'8',
'carbon',
'8.0',
'8.4',
'8.9',
'6',
'boron',
'6.10',
'6.11',
'6.12',
'4',
'argon',
'4.8',
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/5.6-apache/Dockerfile
Expand Up @@ -2,7 +2,7 @@
#
# docker build -t devwithlando/php:5.6-apache .

FROM php:5.6-apache
FROM php:5.6-apache-jessie

# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/5.6-apache/README.md
Expand Up @@ -6,7 +6,7 @@ A decent cross purpose apache based php 5.6 appserver.
```
# Basic apache php 5.6 appserver for Lando
#
# docker build -t devwithlando/php:5.6-apache .
# docker build -t devwithlando/php:5.6-apache-jessie .
FROM php:5.6-apache
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/5.6-fpm/Dockerfile
Expand Up @@ -2,7 +2,7 @@
#
# docker build -t devwithlando/php:5.6-fpm .

FROM php:5.6-fpm
FROM php:5.6-fpm-jessie

# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/5.6-fpm/README.md
Expand Up @@ -8,7 +8,7 @@ A decent cross purpose fpm based php 5.6 appserver.
#
# docker build -t devwithlando/php:5.6-fpm .
FROM php:5.6-fpm
FROM php:5.6-fpm-jessie
# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/7.0-apache/Dockerfile
Expand Up @@ -2,7 +2,7 @@
#
# docker build -t devwithlando/php:7.0-apache .

FROM php:7.0-apache
FROM php:7.0-apache-jessie

# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/7.0-apache/README.md
Expand Up @@ -8,7 +8,7 @@ A decent cross purpose apache based php 7.0 appserver.
#
# docker build -t devwithlando/php:7.0-apache .
FROM php:7.0-apache
FROM php:7.0-apache-jessie
# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/7.0-fpm/Dockerfile
Expand Up @@ -2,7 +2,7 @@
#
# docker build -t devwithlando/php:7.0-fpm .

FROM php:7.0-fpm
FROM php:7.0-fpm-jessie

# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/7.0-fpm/README.md
Expand Up @@ -8,7 +8,7 @@ A decent cross purpose fpm based php 7.0 appserver.
#
# docker build -t devwithlando/php:7.0-fpm .
FROM php:7.0-fpm
FROM php:7.0-fpm-jessie
# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/7.1-apache/Dockerfile
Expand Up @@ -2,7 +2,7 @@
#
# docker build -t devwithlando/php:7.1-apache .

FROM php:7.1-apache
FROM php:7.1-apache-jessie

# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/7.1-apache/README.md
Expand Up @@ -8,7 +8,7 @@ A decent cross purpose apache based php 7.1 appserver.
#
# docker build -t devwithlando/php:7.1-apache .
FROM php:7.1-apache
FROM php:7.1-apache-jessie
# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/7.1-fpm/Dockerfile
Expand Up @@ -2,7 +2,7 @@
#
# docker build -t devwithlando/php:7.1-fpm .

FROM php:7.1-fpm
FROM php:7.1-fpm-jessie

# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/php/7.1-fpm/README.md
Expand Up @@ -8,7 +8,7 @@ A decent cross purpose fpm based php 7.1 appserver.
#
# docker build -t devwithlando/php:7.1-fpm .
FROM php:7.1-fpm
FROM php:7.1-fpm-jessie
# Install dependencies we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion plugins/lando-services/postgres/postgres.js
Expand Up @@ -18,7 +18,7 @@ module.exports = function(lando) {
*/
var versions = [
'10',
'10-beta3',
'10.1',
'9.6',
'9.5',
'9.4',
Expand Down

0 comments on commit 897039a

Please sign in to comment.