taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 967b9c40ae3cfc1261f03193dd0d88ae687485d0
parent 23bc0d0a67b6442b60c616c48dc86f2373dca1b4
Author: Javier Sepulveda <javier.sepulveda@uv.es>
Date:   Wed,  5 Jul 2023 12:24:12 +0200

Changing container host ports to localhost

Diffstat:
Msandcastle/docker-compose.yml | 22+++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/sandcastle/docker-compose.yml b/sandcastle/docker-compose.yml @@ -9,7 +9,7 @@ services: build: ./images/postgres image: sandcastle_talerdb ports: - - ${TALER_DB_PORT}:5432 + - 127.0.0.1:${TALER_DB_PORT}:5432 volumes: - talerlogs:/logs - talerdata:/var/lib/postgresql/data/ @@ -35,7 +35,7 @@ services: depends_on: - talerdb ports: - - ${TALER_EXCHANGE_PORT}:80 + - 127.0.0.1:${TALER_EXCHANGE_PORT}:80 volumes: - talerlogs:/logs - talerdata:/data @@ -48,12 +48,12 @@ services: depends_on: - talerdb ports: - - ${TALER_MERCHANT_PORT}:80 # backend - - ${TALER_BLOG_PORT}:8080 # blog - - ${TALER_DONATIONS_PORT}:8081 # donations - - ${TALER_SURVEY_PORT}:8082 # survey - - ${TALER_LANDING_PORT}:8083 # landing - - ${TALER_SYNC_PORT}:8084 # sync + - 127.0.0.1:${TALER_MERCHANT_PORT}:80 # backend + - 127.0.0.1:${TALER_BLOG_PORT}:8080 # blog + - 127.0.0.1:${TALER_DONATIONS_PORT}:8081 # donations + - 127.0.0.1:${TALER_SURVEY_PORT}:8082 # survey + - 127.0.0.1:${TALER_LANDING_PORT}:8083 # landing + - 127.0.0.1:${TALER_SYNC_PORT}:8084 # sync volumes: - talerlogs:/logs - ${TALER_SANDCASTLE_CONFIG:-./config}:/config:ro @@ -69,9 +69,9 @@ services: bank: build: ./images/libeufin ports: - - ${LIBEUFIN_SANDBOX_PORT}:15000 # Sandbox - - ${LIBEUFIN_NEXUS_PORT}:15001 # Nexus - - ${LIBEUFIN_FRONTEND_PORT}:80 # Nginx serving the SPA + - 127.0.0.1:${LIBEUFIN_SANDBOX_PORT}:15000 # Sandbox + - 127.0.0.1:${LIBEUFIN_NEXUS_PORT}:15001 # Nexus + - 127.0.0.1:${LIBEUFIN_FRONTEND_PORT}:80 # Nginx serving the SPA volumes: - talerlogs:/logs - talerdata:/data