cambios docker compose
This commit is contained in:
parent
131d99a4f3
commit
afb37d98b4
12
compose.yaml
12
compose.yaml
|
@ -1,7 +1,7 @@
|
|||
services:
|
||||
mongodb:
|
||||
image: mongo:bionic
|
||||
container_name: mongodb
|
||||
container_name: mongodb-fe
|
||||
ports:
|
||||
- "27017:27017"
|
||||
environment:
|
||||
|
@ -14,9 +14,9 @@ services:
|
|||
|
||||
bot-api:
|
||||
image: git.fai.st/fedi-image-bot/bot-api:latest
|
||||
container_name: bot-api
|
||||
container_name: bot-api-fe
|
||||
ports:
|
||||
- "8080:8080"
|
||||
- 8080:8080
|
||||
depends_on:
|
||||
- mongodb
|
||||
environment:
|
||||
|
@ -28,9 +28,9 @@ services:
|
|||
|
||||
fe-middleware:
|
||||
image: git.fai.st/fedi-image-bot/fe-middleware:latest
|
||||
container_name: fe-middleware
|
||||
container_name: fe-middleware-fe
|
||||
ports:
|
||||
- "8081:8081"
|
||||
- 8081:8081
|
||||
depends_on:
|
||||
- bot-api
|
||||
environment:
|
||||
|
@ -43,7 +43,7 @@ services:
|
|||
build: .
|
||||
container_name: bot-image-moderation-fe
|
||||
ports:
|
||||
- "80:80"
|
||||
- 80:80
|
||||
develop:
|
||||
watch:
|
||||
- action: rebuild
|
||||
|
|
Loading…
Reference in New Issue