-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
52 lines (46 loc) · 987 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
version: '3'
services:
mongodb:
image: mongodb/mongodb-community-server:latest
ports:
- "4442:27017"
container_name: MongoDB
restart: always
redis_stack:
image: redis/redis-stack:latest
ports:
- "6379:6379"
container_name: RedisStack
restart: always
postgresql:
image: bitnami/postgresql:latest
environment:
- ALLOW_EMPTY_PASSWORD=true
ports:
- "5432:5432"
container_name: PostgreSQL
restart: always
mysql:
image: mysql:latest
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=true
ports:
- "3306:3306"
container_name: MySQL
restart: always
mariadb:
image: mariadb:latest
ports:
- "3307:3306"
environment:
- MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=true
container_name: MariaDB
restart: always
phpmyadmin:
image: phpmyadmin:latest
links:
- "mysql:db"
ports:
- "8080:80"
container_name: phpMyAdmin
restart: always