-
Notifications
You must be signed in to change notification settings - Fork 0
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 #3 from ChefAustin/development
v.0.1.2
- Loading branch information
Showing
8 changed files
with
107 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# gem-jar/.gitignore | ||
*.DS_Store | ||
.DS_Store | ||
.DS_Store? | ||
*.DS_Store* | ||
*.pem | ||
.Spotlight-V100 | ||
.Trashes | ||
data/* | ||
db/* | ||
dive.log | ||
._* |
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,11 +1,10 @@ | ||
FROM ruby:2.6.2 | ||
LABEL maintainer="[email protected]" | ||
LABEL version="0.1.1" | ||
LABEL version="0.1.2" | ||
|
||
COPY Gemfile* config.yml docker_health.rb / | ||
RUN bundle install --gemfile /Gemfile | ||
|
||
EXPOSE 9292 | ||
CMD ["bundle", "exec", "gemstash", "start", "--no-daemonize", "--config-file", "/config.yml"] | ||
|
||
HEALTHCHECK CMD ruby docker_health.rb |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
schemaVersion: '2.0.0' # Make sure to test the latest schema version | ||
|
||
fileExistenceTests: | ||
- name: 'existence-Gemfile' | ||
path: '/Gemfile' | ||
shouldExist: true | ||
- name: 'existence-config.yml' | ||
path: '/config.yml' | ||
shouldExist: true | ||
- name: 'existence-docker_health.rb' | ||
path: '/docker_health.rb' |