update postgresql version

This commit is contained in:
2021-07-01 00:01:29 +02:00
parent 6aa7f5568b
commit b06a92209c
5 changed files with 14 additions and 5 deletions

1
.idea/.gitignore generated vendored
View File

@@ -5,6 +5,5 @@
/dataSources.local.xml /dataSources.local.xml
/compiler.xml /compiler.xml
/uiDesigner.xml /uiDesigner.xml
/dataSources.xml
/sonarlint/ /sonarlint/
/jarRepositories.xml /jarRepositories.xml

12
.idea/dataSources.xml generated Normal file
View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DataSourceManagerImpl" format="xml" multifile-model="true">
<data-source source="LOCAL" name="json_test@localhost" uuid="1191ff9a-6823-4b18-af90-483ddf0e4b69">
<driver-ref>postgresql</driver-ref>
<synchronize>true</synchronize>
<jdbc-driver>org.postgresql.Driver</jdbc-driver>
<jdbc-url>jdbc:postgresql://localhost:5555/json_test</jdbc-url>
<working-dir>$ProjectFileDir$</working-dir>
</data-source>
</component>
</project>

View File

@@ -1,6 +1,6 @@
# To execute this docker-compose yml file use docker-compose -f <file_name> up # To execute this docker-compose yml file use docker-compose -f <file_name> up
# Add the "-d" flag at the end for detached execution # Add the "-d" flag at the end for detached execution
version: '3.7' version: '3.8'
services: services:
db: db:
container_name: postgres_json container_name: postgres_json

View File

@@ -1,4 +1,4 @@
FROM postgres:11 FROM postgres:13
COPY postgresql.conf /tmp/postgresql.conf COPY postgresql.conf /tmp/postgresql.conf
COPY extension.sh /docker-entrypoint-initdb.d/000-extension.sh COPY extension.sh /docker-entrypoint-initdb.d/000-extension.sh

View File

@@ -664,5 +664,3 @@ log_rotation_size = 100MB
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
# Add settings for extensions here # Add settings for extensions here
zdb.default_elasticsearch_url = 'http://elasticsearch:9200/'