Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4087fe9

Browse files
author
Dwi Fahni Denni
committed
Change version to 11.8-debian
1 parent 74a135b commit 4087fe9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG POSTGRES_VERSION=10.2
1+
ARG POSTGRES_VERSION=11.8
22
FROM postgres:${POSTGRES_VERSION}
33

44
# ================================================================================================

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Docker Framework
3+
Copyright (c) 2020 Docker Framework
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# PostgreSQL Container
22
PostgreSQL Container of Docker Framework
33

4-
[![Build Status](https://travis-ci.org/dockerframework/postgresql.svg?branch=master)](https://travis-ci.org/dockerframework/postgresql) [![](https://images.microbadger.com/badges/image/dockerframework/postgresql:latest.svg)](https://microbadger.com/images/dockerframework/postgresql:latest "Layers") [![](https://images.microbadger.com/badges/version/dockerframework/postgresql:latest.svg)](https://microbadger.com/images/dockerframework/postgresql:latest "Version") [![GitHub issues](https://img.shields.io/github/issues/dockerframework/postgresql.svg)](https://github.com/dockerframework/postgresql/issues) [![GitHub forks](https://img.shields.io/github/forks/dockerframework/postgresql.svg)](https://github.com/dockerframework/postgresql/network) [![GitHub stars](https://img.shields.io/github/stars/dockerframework/postgresql.svg)](https://github.com/dockerframework/postgresql/stargazers) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/dockerframework/postgresql/master/LICENSE)
4+
[![Build Status](https://travis-ci.org/dockerframework/postgresql.svg?branch=master)](https://travis-ci.org/dockerframework/postgresql) [![](https://images.microbadger.com/badges/image/dockerframework/postgresql:11.8.svg)](https://microbadger.com/images/dockerframework/postgresql:11.8 "Layers") [![](https://images.microbadger.com/badges/version/dockerframework/postgresql:11.8.svg)](https://microbadger.com/images/dockerframework/postgresql:11.8 "Version") [![GitHub issues](https://img.shields.io/github/issues/dockerframework/postgresql.svg)](https://github.com/dockerframework/postgresql/issues) [![GitHub forks](https://img.shields.io/github/forks/dockerframework/postgresql.svg)](https://github.com/dockerframework/postgresql/network) [![GitHub stars](https://img.shields.io/github/stars/dockerframework/postgresql.svg)](https://github.com/dockerframework/postgresql/stargazers) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/dockerframework/postgresql/master/LICENSE)

docker-compose.skeleton.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '3.2'
1+
version: '3.6'
22

33
services:
44

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '3.2'
1+
version: '3.6'
22

33
services:
44

@@ -15,7 +15,7 @@ services:
1515
- /etc/localtime:/etc/localtime:ro
1616
- ./data/postgresql:/var/lib/postgresql # volume for data
1717
environment:
18-
- POSTGRES_VERSION=10.2
18+
- POSTGRES_VERSION=11.8
1919
- POSTGRES_ROOT_HOST=postgresql # grant user hostmask (optional)
2020
- POSTGRES_DATABASE=laradock_postgresql # create database (optional)
2121
- POSTGRES_USER=laradock # grant user name (optional)

tests/docker_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
DOCKER_IMAGE="dockerframework/postgresql"
4-
DOCKER_TAG="latest"
4+
DOCKER_TAG="11.8"
55

66
#### Halt script on error
77
set -e

0 commit comments

Comments
 (0)