From 7c8a44bd2673164844465daf8a41fe74aa78ca21 Mon Sep 17 00:00:00 2001 From: Javielico <103+javielico@noreply.git.coopcloud.tech> Date: Thu, 13 Aug 2026 14:10:09 +0000 Subject: [PATCH] Open ports 5432 for PGSQL new recipe (#133) Reviewed-on: https://git.coopcloud.tech/coop-cloud/traefik/pulls/133 Reviewed-by: p4u1 <133+p4u1@noreply.git.coopcloud.tech> Co-authored-by: Javielico <103+javielico@noreply.git.coopcloud.tech> --- .env.sample | 4 ++++ compose.pgsql.yml | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 compose.pgsql.yml 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 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