Merge branch '656-upgraded-docker-postgres-version' into 'develop'
Fix #656: Updated default docker postgres version from 9.4 to 11 Closes #656 See merge request funkwhale/funkwhale!529
This commit is contained in:
commit
0664b97605
3
.env.dev
3
.env.dev
|
@ -15,3 +15,6 @@ LDAP_ENABLED=False
|
|||
|
||||
# Uncomment this if you're using traefik/https
|
||||
# FORCE_HTTPS_URLS=True
|
||||
|
||||
# Customize to your needs
|
||||
POSTGRES_VERSION=11
|
||||
|
|
|
@ -131,7 +131,7 @@ flake8:
|
|||
|
||||
test_api:
|
||||
services:
|
||||
- postgres:9.4
|
||||
- postgres:11
|
||||
- redis:3
|
||||
stage: test
|
||||
image: funkwhale/funkwhale:develop
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Updated default docker postgres version from 9.4 to 11 (#656)
|
|
@ -4,7 +4,7 @@ services:
|
|||
postgres:
|
||||
restart: unless-stopped
|
||||
env_file: .env
|
||||
image: postgres:9.4
|
||||
image: postgres:11
|
||||
volumes:
|
||||
- ./data/postgres:/var/lib/postgresql/data
|
||||
|
||||
|
|
Loading…
Reference in New Issue