July 2018
Intermediate to advanced
420 pages
8h 46m
English
Now, we are going to add a new directory in our frontend application, to store all of the bash script files that our application can have. In this example, we will only use one, but in real-world applications, this folder can store a series of bash files:
#!/bin/bash set -e # Docker command to create the front-end application docker image build -t angular-laravel-book .
Note that you can use any name for your application; we are using angular-laravel-book for the book example.
Read now
Unlock full access