Changes
This commit is contained in:
@@ -5,5 +5,5 @@ If, for any reason, the URI provided in this file to the Software License Agreem
|
|||||||
This license does not apply to the files not under Superengine copyright as detailed in the NOTICE.txt file.
|
This license does not apply to the files not under Superengine copyright as detailed in the NOTICE.txt file.
|
||||||
|
|
||||||
This software uses the following third-party software:
|
This software uses the following third-party software:
|
||||||
- the postgresql image with the tag 17.4 from Docker Hub
|
- the postgresql image with the tag 18.1 from Docker Hub
|
||||||
Third-party software have a different copyright owner and license.
|
Third-party software have a different copyright owner and license.
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# PostgreSQL Port for Superengine
|
# PostgreSQL Port for Superengine
|
||||||
|
|
||||||
This port uses the `postgresql` image which is the ["official" PostgreSQL Docker image](https://hub.docker.com/_/postgres/) with the tag `17.4`. The port may be updated to use a newer tag in the future.
|
This port uses the `postgresql` image which is the ["official" PostgreSQL Docker image](https://hub.docker.com/_/postgres/) with the tag `18.1`. The port may be updated to use a newer tag in the future.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
services:
|
services:
|
||||||
{{app_id}}-postgresql:
|
{{app_id}}-postgresql:
|
||||||
image: postgres:17.4
|
image: postgres:18.1
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: {{entitlements.db-user}}
|
POSTGRES_USER: {{entitlements.db-user}}
|
||||||
POSTGRES_PASSWORD: {{entitlements.db-password}}
|
POSTGRES_PASSWORD: {{entitlements.db-password}}
|
||||||
POSTGRES_DB: {{entitlements.db-name}}
|
POSTGRES_DB: {{entitlements.db-name}}
|
||||||
volumes:
|
volumes:
|
||||||
- {{entitlements.folder-path}}:/var/lib/postgresql/data
|
- {{entitlements.folder-path}}:/var/lib/postgresql
|
||||||
ports:
|
ports:
|
||||||
- {{entitlements.port-number}}:5432
|
- {{entitlements.port-number}}:5432
|
||||||
{{#unless (eq entitlements.os "windows")}}
|
{{#unless (eq entitlements.os "windows")}}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"name": {
|
"name": {
|
||||||
"en": "PostgreSQL"
|
"en": "PostgreSQL"
|
||||||
},
|
},
|
||||||
"version": "17.4-5"
|
"version": "18.1"
|
||||||
},
|
},
|
||||||
"entitlements": [
|
"entitlements": [
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user