12
Sử dụng Docker-Compose, cách thực hiện nhiều lệnh
Tôi muốn làm một cái gì đó như thế này nơi tôi có thể chạy nhiều lệnh theo thứ tự. 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
500
docker
yaml
docker-compose