diff --git a/composer.lock b/composer.lock index 73643fda23..519b70f0c7 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7735bf70a628db88ecc483a57cd2d631", + "content-hash": "1280bf4d25db19f63b96db9fcd39f60b", "packages": [ { "name": "adhocore/jwt", @@ -9138,8 +9138,5 @@ "platform-dev": { "ext-fileinfo": "*" }, - "platform-overrides": { - "php": "8.3" - }, "plugin-api-version": "2.9.0" } diff --git a/docker-compose.yml b/docker-compose.yml index cc5c628ac0..b16c10efae 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1321,10 +1321,7 @@ services: - mongodb postgresql: - build: - context: ./tests/resources/postgresql - args: - POSTGRES_VERSION: 17 + image: appwrite/postgres:0.1.0 container_name: appwrite-postgresql <<: *x-logging networks: diff --git a/postgres.dockerfile b/postgres.dockerfile deleted file mode 100644 index 3214121ef7..0000000000 --- a/postgres.dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM postgres:16 - -RUN apt-get update \ - && apt-get install -y --no-install-recommends \ - postgresql-16-postgis-3 \ - postgresql-16-postgis-3-scripts \ - postgresql-16-pgvector \ - && rm -rf /var/lib/apt/lists/* \ No newline at end of file diff --git a/tests/resources/postgresql/Dockerfile b/tests/resources/postgresql/Dockerfile deleted file mode 100644 index a731833b48..0000000000 --- a/tests/resources/postgresql/Dockerfile +++ /dev/null @@ -1,11 +0,0 @@ -ARG POSTGRES_VERSION=17 -FROM postgres:${POSTGRES_VERSION} - -ARG POSTGRES_VERSION=17 - -RUN apt-get update \ - && apt-get install -y --no-install-recommends \ - postgresql-${POSTGRES_VERSION}-postgis-3 \ - postgresql-${POSTGRES_VERSION}-postgis-3-scripts \ - postgresql-${POSTGRES_VERSION}-pgvector \ - && rm -rf /var/lib/apt/lists/*