Skip to content

Commit

Permalink
feat: added stickers docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SlashLight committed Dec 13, 2024
1 parent 9678a34 commit 562a021
Showing 1 changed file with 20 additions and 27 deletions.
47 changes: 20 additions & 27 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,23 @@ version: '3.9'

services:
authgrpc:
build:
context: .
dockerfile: Dockerfileauthgrpc
image: slashlight/authgrpc:latest
restart: always
ports:
- "7072:7072"
depends_on:
- redis

profilegrpc:
build:
context: .
dockerfile: Dockerfileprofilegrpc
image: slashlight/profilegrpc:latest
restart: always
ports:
- "7074:7074"
depends_on:
- db
- authgrpc
postgrpc:
build:
context: .
dockerfile: Dockerfilepostgrpc
image: slashlight/postgrpc:latest
restart: always
ports:
- "7075:7075"
Expand All @@ -33,9 +27,7 @@ services:
- profilegrpc

community:
build:
context: .
dockerfile: Dockerfilecommunity
image: slashlight/community:latest
restart: always
ports:
- "8086:8086"
Expand All @@ -45,9 +37,7 @@ services:
- authgrpc

auth:
build:
context: .
dockerfile: Dockerfileauth
image: slashlight/auth:latest
restart: always
ports:
- "8082:8082"
Expand All @@ -57,9 +47,7 @@ services:
- community

file:
build:
context: .
dockerfile: Dockerfilefile
image: slashlight/file:latest
volumes:
- ./image:/image
restart: always
Expand All @@ -70,9 +58,7 @@ services:
- auth

profile:
build:
context: .
dockerfile: Dockerfileprofile
image: slashlight/profile:latest
restart: always
ports:
- "8084:8084"
Expand All @@ -83,9 +69,7 @@ services:
- file

post:
build:
context: .
dockerfile: Dockerfilepost
image: slashlight/post:latest
restart: always
ports:
- "8085:8085"
Expand All @@ -96,9 +80,7 @@ services:
- community
- profile
chat:
build:
context: .
dockerfile: Dockerfilechat
image: slashlight/chat:latest
restart: always
ports:
- "8087:8087"
Expand All @@ -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:
Expand Down

0 comments on commit 562a021

Please sign in to comment.