To get all registered indices and remove one:
curl -XGET http://elasticsearch:9200/_cat/indices | sort
curl -XDELETE http://elasticsearch:9200/syst-log-forex-core-20170726To get all registered indices and remove one:
curl -XGET http://elasticsearch:9200/_cat/indices | sort
curl -XDELETE http://elasticsearch:9200/syst-log-forex-core-20170726| <VirtualHost *:{PORT}> | |
| ServerName www.yourdomain.com | |
| ServerAdmin [email protected] | |
| DocumentRoot /var/www/yourdir/ | |
| <Directory /var/www/yourdir> | |
| Options Indexes FollowSymLinks | |
| AllowOverride all | |
| Order allow,deny | 
| #!/bin/bash | |
| CONTAINER=$1 | |
| RUNNING=$(docker inspect --format="{{ .State.Running }}" $CONTAINER 2> /dev/null) | |
| if [ $? -eq 1 ]; then | |
| echo "'$CONTAINER' does not exist." | |
| else | |
| /usr/bin/docker rm --force $CONTAINER | 
| # Set nginx base image | |
| FROM nginx | |
| # Copy custom configuration file from the current directory | |
| COPY nginx.conf /etc/nginx/nginx.conf | 
| Some Jenkinsfile examples | 
| # MariaDB 10.3 CentOS repository list - created 2018-11-14 19:22 UTC | |
| # http://downloads.mariadb.org/mariadb/repositories/ | |
| [mariadb] | |
| name = MariaDB | |
| baseurl = http://yum.mariadb.org/10.3/centos7-amd64 | |
| gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB | |
| gpgcheck=1 |