One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# Adapted from solution provided by http://stackoverflow.com/users/57719/chin-huang http://stackoverflow.com/a/31465939/348868 | |
# Scenario: You want to add a group to the list of the AllowGroups in ssh_config | |
# before: | |
# AllowGroups Group1 | |
# After: | |
# AllowGroups Group1 Group2 | |
- name: Add Group to AllowGroups | |
replace: | |
backup: yes |
docker build \ | |
--tag dockstack \ | |
--build-arg BUILD_DATE=`date --utc +"%Y-%m-%dT%H:%M:%SZ"` \ | |
--build-arg VCS_REF=`git rev-parse --short HEAD` \ | |
--build-arg VERSION="test" \ | |
. | |
Sending build context to Docker daemon 11.26kB | |
Step 1/23 : FROM ubuntu:16.04 | |
16.04: Pulling from library/ubuntu |