bitpressio / docker-for-php-developers-errata

Reported errata for https://bitpress.io/docker-for-php-developers/
13 stars 0 forks source link

Chapter 7, Listing 7.10 is missing `depends_on` #4

Closed paulredmond closed 4 years ago

paulredmond commented 6 years ago

In Chapter 7, listing 7.10 needs a depends_on key for the app image in the cake service:

#...
  cake:
    image: cakephp-app
    container_name: cakephp-console
    depends_on:
      - app
    volumes:
      - .:/srv/cakephp
    entrypoint: [
      "/srv/cakephp/app/Console/cake",
      "-app", "/srv/cakephp/app"
    ]
paulredmond commented 4 years ago

Fixed in the manuscript and Scribus document. Staged in the preview branch and will go out with the next book release.