Skip to content

Commit

Permalink
Aghomari/link release upload #30 #31 (#71)
Browse files Browse the repository at this point in the history
* fix upload image on release and resource-pack

* good clean release

* working elasticsearch on users

* fix tests

* clean tests

* fix update playlist

* refactur playlists update

* stupid imports

* fix merging problems

* working upload relaase

* fully working upload release and spotify

Co-authored-by: abdelillah <aghomari.professionnel@gmail.com>
  • Loading branch information
abdelillah-tech and abdelillah authored May 20, 2022
1 parent 44f9660 commit 3fe4f7b
Show file tree
Hide file tree
Showing 70 changed files with 12,769 additions and 671 deletions.
36 changes: 34 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
container_name: mongodb
restart: always
volumes:
- ./mongodb-data:/data/db
- mongodb-data:/data/db
ports:
- 27017:27017
env_file:
Expand Down Expand Up @@ -77,7 +77,39 @@ services:
env_file:
- docker.env

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.2.0
container_name: elasticsearch
environment:
- node.name=es01
- cluster.name=docker-cluster
- cluster.initial_master_nodes=es01
- bootstrap.memory_lock=true
- xpack.security.enabled=false
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
ports:
- 9200:9200
env_file:
- docker.env
kibana:
container_name: kibana
image: docker.elastic.co/kibana/kibana:8.2.0
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
- 5601:5601
depends_on:
- elasticsearch
env_file:
- docker.env
volumes:
mongodb-data:
grafana-storage:

elasticsearch-data:
driver: local
2 changes: 2 additions & 0 deletions kibana.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
server.host: "0.0.0.0"
elasticsearch.hosts: ["http://elasticsearch:9200"]
Loading

0 comments on commit 3fe4f7b

Please sign in to comment.