# docker-es **Repository Path**: andals/docker-es ## Basic Information - **Project Name**: docker-es - **Description**: Elasticsearch - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-12-27 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Init ``` git clone git@gitee.com:andals/docker-es.git es cd es prjHome=`pwd` esVer=6.3.1 ``` # Build image ``` docker build -t andals/es:${esVer} ./ ``` # Run container ``` docker run -d --name=es-${esVer} -v /data/es:/data/es --net=host andals/es:${esVer} ```