-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
47 lines (40 loc) · 869 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
version: '3'
services:
mongodb:
image: mongodb/mongodb-community-server:latest
ports:
- "4442:27017"
container_name: MongoDB
redis_stack:
image: redis/redis-stack:latest
ports:
- "6379:6379"
container_name: RedisStack
postgresql:
image: bitnami/postgresql:latest
environment:
- ALLOW_EMPTY_PASSWORD=true
ports:
- "5432:5432"
container_name: PostgreSQL
mysql:
image: mysql:latest
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=true
ports:
- "3306:3306"
container_name: MySQL
mariadb:
image: mariadb:latest
ports:
- "3307:3306"
environment:
- MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=true
container_name: MariaDB
phpmyadmin:
image: phpmyadmin:latest
links:
- "mysql:db"
ports:
- "8080:80"
container_name: phpMyAdmin