mirror of
https://github.com/jimeh/Dockerfiles.git
synced 2026-02-19 07:56:41 +00:00
Initial commit
This commit is contained in:
15
elasticsearch/docker-compose.yml
Normal file
15
elasticsearch/docker-compose.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
version: "2"
|
||||
services:
|
||||
elasticsearch:
|
||||
container_name: elasticsearch
|
||||
build: .
|
||||
restart: always
|
||||
network_mode: bridge
|
||||
volumes:
|
||||
- data:/usr/share/elasticsearch/data
|
||||
ports:
|
||||
- "127.0.0.1:9200:9200"
|
||||
- "127.0.0.1:9300:9300"
|
||||
volumes:
|
||||
data:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user