我想做这样的事情,我可以在以下代码中运行多个命令:
db:
image: postgres
web:
build: .
command: python manage.py migrate
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- "8000:8000"
links:
- db
我怎么能执行多个命令?
谢谢。
原文由 RustyShackleford 发布,翻译遵循 CC BY-SA 4.0 许可协议
想通了,使用
bash -c
。例子:
多行中的相同示例:
或者: