Initial commit

This commit is contained in:
2016-06-04 23:43:26 +01:00
commit c6c3886f64
5 changed files with 51 additions and 0 deletions

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
# jimeh's Dockerfiles
Small collection of Docker and Docker Compose files I use to run stuff on my
personal laptop.

2
elasticsearch/Dockerfile Normal file
View File

@@ -0,0 +1,2 @@
FROM elasticsearch:1.5.2
RUN plugin install elasticsearch/marvel/latest

View 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

16
mysql/docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: "2"
services:
mysql:
image: mysql
container_name: mysql
restart: always
network_mode: bridge
ports:
- "127.0.0.1:3306:3306"
volumes:
- data:/var/lib/mysql
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
volumes:
data:
driver: local

14
redis/docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: "2"
services:
redis:
image: redis
container_name: redis
restart: always
network_mode: bridge
volumes:
- data:/data
ports:
- "127.0.0.1:6379:6379"
volumes:
data:
driver: local