mirror of
https://github.com/jimeh/Dockerfiles.git
synced 2026-02-19 07:56:41 +00:00
Initial commit
This commit is contained in:
4
README.md
Normal file
4
README.md
Normal 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
2
elasticsearch/Dockerfile
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
FROM elasticsearch:1.5.2
|
||||||
|
RUN plugin install elasticsearch/marvel/latest
|
||||||
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
|
||||||
16
mysql/docker-compose.yml
Normal file
16
mysql/docker-compose.yml
Normal 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
14
redis/docker-compose.yml
Normal 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
|
||||||
Reference in New Issue
Block a user