我正在使用官方的wordpress Docker图像与docker-compose在我的Mac(使用boot2docker).我需要做一次性的数据导入.我不知道该怎么做如何将数据导入数据库容器?
wordpress:
image: wordpress
links:
- db:MysqL
ports:
- 8080:80
volumes:
- .:/var/www/html/wp-content/themes/my-theme-name
db:
image: mariadb
environment:
MysqL_ROOT_PASSWORD: example
最佳答案
原文链接:https://www.f2er.com/docker/436406.html