forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
53 lines (53 loc) · 1.21 KB
/
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
53
version: '3'
services:
dynamodb:
image: amazon/dynamodb-local:2.0.0
ports:
- "8000:8000"
command: ["-jar", "DynamoDBLocal.jar", "-sharedDb", "-inMemory"]
memcached:
image: memcached:1.6-alpine
ports:
- "11211:11211"
restart: always
mysql:
image: mysql/mysql-server:5.7
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 1
MYSQL_ROOT_PASSWORD: ""
MYSQL_DATABASE: "forge"
MYSQL_ROOT_HOST: "%"
ports:
- "3306:3306"
restart: always
# postgres:
# image: postgres:15
# environment:
# POSTGRES_PASSWORD: "secret"
# POSTGRES_DB: "forge"
# ports:
# - "5432:5432"
# restart: always
# mariadb:
# image: mariadb:11
# environment:
# MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: "yes"
# MARIADB_ROOT_PASSWORD: ""
# MARIADB_DATABASE: "forge"
# MARIADB_ROOT_HOST: "%"
# ports:
# - "3306:3306"
# restart: always
# mssql:
# image: mcr.microsoft.com/mssql/server:2019-latest
# environment:
# ACCEPT_EULA: "Y"
# SA_PASSWORD: "Forge123"
# ports:
# - "1433:1433"
# restart: always
redis:
image: redis:7.0-alpine
ports:
- "6379:6379"
restart: always