Skip to content

Commit

Permalink
Merge branch 'chore-container-names' into merge-to-develop
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-salles committed Aug 29, 2022
2 parents 1ec6958 + d31991a commit 4afdef1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ version: '3.6'
services:
database:
image: postgres
container_name: bothub-db
ports:
- 5432:5432
volumes:
Expand All @@ -27,6 +28,7 @@ services:

bothub:
image: ${DOCKER_IMAGE_NAME:-ilha/bothub}:${TAG:-latest}
container_name: bothub-backend
build:
context: .
dockerfile: Dockerfile
Expand Down Expand Up @@ -79,6 +81,7 @@ services:
build:
context: .
dockerfile: Dockerfile
container_name: bothub-celery
depends_on:
- bothub
- bothub-engine-celery-redis
Expand Down Expand Up @@ -124,11 +127,13 @@ services:

bothub-engine-celery-redis:
image: redis
container_name: bothub-redis
ports:
- 6379:6379

es:
image: elasticsearch:7.14.1
container_name: bothub-es
environment:
- discovery.type=single-node
- bootstrap.memory_lock=true
Expand All @@ -155,6 +160,7 @@ services:

kibana:
image: docker.elastic.co/kibana/kibana:7.14.1
container_name: bothub-kibana
environment:
SERVER_NAME: kibana
ELASTICSEARCH_HOSTS: http://es:9200
Expand Down

0 comments on commit 4afdef1

Please sign in to comment.