From 562a0217460d8025b4b44cc923edbf7bf6931f46 Mon Sep 17 00:00:00 2001 From: slashlight Date: Fri, 13 Dec 2024 10:49:41 +0300 Subject: [PATCH] feat: added stickers docker-compose.yml --- docker-compose.yml | 47 ++++++++++++++++++++-------------------------- 1 file changed, 20 insertions(+), 27 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 97d62812..6d123656 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,9 +2,7 @@ version: '3.9' services: authgrpc: - build: - context: . - dockerfile: Dockerfileauthgrpc + image: slashlight/authgrpc:latest restart: always ports: - "7072:7072" @@ -12,9 +10,7 @@ services: - redis profilegrpc: - build: - context: . - dockerfile: Dockerfileprofilegrpc + image: slashlight/profilegrpc:latest restart: always ports: - "7074:7074" @@ -22,9 +18,7 @@ services: - db - authgrpc postgrpc: - build: - context: . - dockerfile: Dockerfilepostgrpc + image: slashlight/postgrpc:latest restart: always ports: - "7075:7075" @@ -33,9 +27,7 @@ services: - profilegrpc community: - build: - context: . - dockerfile: Dockerfilecommunity + image: slashlight/community:latest restart: always ports: - "8086:8086" @@ -45,9 +37,7 @@ services: - authgrpc auth: - build: - context: . - dockerfile: Dockerfileauth + image: slashlight/auth:latest restart: always ports: - "8082:8082" @@ -57,9 +47,7 @@ services: - community file: - build: - context: . - dockerfile: Dockerfilefile + image: slashlight/file:latest volumes: - ./image:/image restart: always @@ -70,9 +58,7 @@ services: - auth profile: - build: - context: . - dockerfile: Dockerfileprofile + image: slashlight/profile:latest restart: always ports: - "8084:8084" @@ -83,9 +69,7 @@ services: - file post: - build: - context: . - dockerfile: Dockerfilepost + image: slashlight/post:latest restart: always ports: - "8085:8085" @@ -96,9 +80,7 @@ services: - community - profile chat: - build: - context: . - dockerfile: Dockerfilechat + image: slashlight/chat:latest restart: always ports: - "8087:8087" @@ -107,6 +89,17 @@ services: - authgrpc - post + stickers: + build: + context: . + dockerfile: Dockerfilesticker + restart: always + ports: + - "8088:8088" + depends_on: + - db + - authgrpc + db: image: postgres:latest ports: