-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from autopilotpattern/microbadger
Version updates
- Loading branch information
Showing
5 changed files
with
71 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
# a minimal Nginx container including containerbuddy and a simple virtulhost config | ||
FROM autopilotpattern/nginx:latest | ||
|
||
# Build-time metadata as defined at http://label-schema.org | ||
# with added usage described in https://microbadger.com/#/labels | ||
ARG BUILD_DATE | ||
ARG VCS_REF | ||
LABEL org.label-schema.build-date=$BUILD_DATE \ | ||
org.label-schema.docker.dockerfile="/nginx/Dockerfile" \ | ||
org.label-schema.name="Autopilot Pattern Nginx for WordPress" \ | ||
org.label-schema.url="https://github.com/autopilotpattern/wordpress" \ | ||
org.label-schema.vcs-ref=$VCS_REF \ | ||
org.label-schema.vcs-type="Git" \ | ||
org.label-schema.vcs-url="https://github.com/autopilotpattern/wordpress" | ||
|
||
# Add our configuration files | ||
COPY etc /etc |