From baf02088aa0d54e4c3e413fbf6e382f8f3142665 Mon Sep 17 00:00:00 2001 From: Javielico <103+javielico@noreply.git.coopcloud.tech> Date: Wed, 12 Aug 2026 15:13:24 +0000 Subject: [PATCH 1/2] Target port 5432 to open ports for PGSQL Recipe This change is for opening port 5432 for recipe pgsql --- compose.pgsql.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 compose.pgsql.yml diff --git a/compose.pgsql.yml b/compose.pgsql.yml new file mode 100644 index 0000000..c7d3f9e --- /dev/null +++ b/compose.pgsql.yml @@ -0,0 +1,12 @@ +--- +version: "3.8" + +services: + app: + environment: + - PGSQL_ENABLED + ports: + - target: 5432 + published: 5432 + protocol: tcp + mode: host \ No newline at end of file -- 2.54.0 From a3416aa31a650141b99044bdaa453459dd64de3d Mon Sep 17 00:00:00 2001 From: Javielico <103+javielico@noreply.git.coopcloud.tech> Date: Wed, 12 Aug 2026 15:14:29 +0000 Subject: [PATCH 2/2] Add compose.pgsql.yml to compose file --- .env.sample | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.env.sample b/.env.sample index 8e8b10c..046c2ad 100644 --- a/.env.sample +++ b/.env.sample @@ -159,6 +159,10 @@ WRITE_TIMEOUT=0s #COMPOSE_FILE="$COMPOSE_FILE:compose.smtp.yml" #SMTP_ENABLED=1 +## PGSQL recipe open port 5432 +#COMPOSE_FILE="$COMPOSE_FILE:compose.pgsql.yml" +#PGSQL_ENABLED=1 + ## Compy #COMPOSE_FILE="$COMPOSE_FILE:compose.compy.yml" #COMPY_ENABLED=1 -- 2.54.0