From cd4a57a4ea714bdc57f04252739c126877b34eeb Mon Sep 17 00:00:00 2001 From: kswang Date: Tue, 24 Oct 2023 19:05:31 +0000 Subject: [PATCH] fix: remove unecessary mail server --- docker/docker-compose.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 0c11e86..bd9701e 100755 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -11,7 +11,7 @@ services: POSTGRES_PASSWORD: strapi POSTGRES_DB: strapi ports: - - '5435:5432' + - '127.0.0.1:5435:5432' postgres-test: container_name: lsalab-postgres-test-1 image: postgres @@ -23,16 +23,7 @@ services: POSTGRES_PASSWORD: strapi POSTGRES_DB: strapi ports: - - '5433:5432' - mailserver: - container_name: mail-server - image: namshi/smtp - ports: - - '25:25' # SMTP (explicit TLS => STARTTLS) - - '143:143' # IMAP4 (explicit TLS => STARTTLS) - - '465:465' # ESMTP (implicit TLS) - - '587:587' # ESMTP (explicit TLS => STARTTLS) - - '993:993' # IMAP4 (implicit TLS) + - '127.0.0.1:5433:5432' volumes: pgdata: