1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-16 04:10:09 -07:00

Elastisearch Docker Start Script

Netbeans gitignore
This commit is contained in:
Daniel 2020-03-20 08:25:42 +01:00
parent 7f9d381de0
commit 7a1d369984
2 changed files with 5 additions and 1 deletions

3
.gitignore vendored
View File

@ -21,4 +21,5 @@
/web/resources/
/var/media/
/web/media/
.php_cs.cache
.php_cs.cache
/nbproject/

3
bin/startElastisearchDocker.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e "xpack.security.enabled=false" docker.elastic.co/elasticsearch/elasticsearch:5.5.0