mirror of
https://github.com/hexastack/hexabot
synced 2025-03-12 15:12:08 +00:00
Merge pull request #51 from Hexastack/hotfix/docker-images
fix: docker images in compose file
This commit is contained in:
commit
2675b6b524
@ -1,4 +1,4 @@
|
|||||||
name: Build and Push Docker Images On Merge
|
name: Build and Push Docker Images
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
@ -10,7 +10,7 @@ services:
|
|||||||
|
|
||||||
nlu-api:
|
nlu-api:
|
||||||
container_name: nlu-api
|
container_name: nlu-api
|
||||||
image: hexabot-nlu:latest
|
image: hexastack/hexabot-nlu:latest
|
||||||
env_file: .env
|
env_file: .env
|
||||||
networks:
|
networks:
|
||||||
- nlp-network
|
- nlp-network
|
||||||
|
@ -3,7 +3,7 @@ version: "3.9"
|
|||||||
services:
|
services:
|
||||||
database-init:
|
database-init:
|
||||||
container_name: database-init
|
container_name: database-init
|
||||||
image: hexabot-api:latest
|
image: hexastack/hexabot-api:latest
|
||||||
command: sh -c "npm run cache:init && npm run migrate prune && npm run migrate up"
|
command: sh -c "npm run cache:init && npm run migrate prune && npm run migrate up"
|
||||||
env_file: .env
|
env_file: .env
|
||||||
networks:
|
networks:
|
||||||
@ -14,7 +14,7 @@ services:
|
|||||||
|
|
||||||
api:
|
api:
|
||||||
container_name: api
|
container_name: api
|
||||||
image: hexabot-api:latest
|
image: hexastack/hexabot-api:latest
|
||||||
env_file: .env
|
env_file: .env
|
||||||
ports:
|
ports:
|
||||||
- ${API_PORT}:3000
|
- ${API_PORT}:3000
|
||||||
@ -37,7 +37,7 @@ services:
|
|||||||
|
|
||||||
hexabot-frontend:
|
hexabot-frontend:
|
||||||
container_name: frontend
|
container_name: frontend
|
||||||
image: hexabot-ui:latest
|
image: hexastack/hexabot-ui:latest
|
||||||
env_file: .env
|
env_file: .env
|
||||||
ports:
|
ports:
|
||||||
- ${APP_FRONTEND_PORT}:8080
|
- ${APP_FRONTEND_PORT}:8080
|
||||||
@ -67,7 +67,7 @@ services:
|
|||||||
|
|
||||||
widget:
|
widget:
|
||||||
container_name: widget
|
container_name: widget
|
||||||
image: hexabot-widget:latest
|
image: hexastack/hexabot-widget:latest
|
||||||
networks:
|
networks:
|
||||||
- app-network
|
- app-network
|
||||||
depends_on:
|
depends_on:
|
||||||
|
Loading…
Reference in New Issue
Block a user