You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
400 B
25 lines
400 B
5 years ago
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
image: mysql:5.6
|
||
|
ports:
|
||
|
- 3306:3306
|
||
|
environment:
|
||
|
- MYSQL_ROOT_PASSWORD=root
|
||
|
volumes:
|
||
|
- .:/docker-entrypoint-initdb.d
|
||
|
command: [
|
||
|
'--character-set-server=utf8',
|
||
|
'--collation-server=utf8_unicode_ci'
|
||
|
]
|
||
|
|
||
|
redis:
|
||
|
image: redis
|
||
|
ports:
|
||
|
- 6379:6379
|
||
|
|
||
|
memcached:
|
||
|
image: memcached
|
||
|
ports:
|
||
|
- 11211:11211
|