Merge pull request #51 from Hexastack/hotfix/docker-images

fix: docker images in compose file
This commit is contained in:
Mohamed Marrouchi 2024-09-20 18:59:48 +01:00 committed by GitHub
commit 2675b6b524
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
name: Build and Push Docker Images On Merge name: Build and Push Docker Images
on: on:
push: push:

View File

@ -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

View File

@ -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: