Commit 5864bdba by Tsubasa Namiki

Fixed degrade spec

and modify README.md
parent 1c973405
...@@ -68,5 +68,5 @@ bundle exec rake spec ...@@ -68,5 +68,5 @@ bundle exec rake spec
License License
------------------------------ ------------------------------
[OSL 3.0](LICENSE.txt) [OSL 3.0](LICENSE.txt)
It fits in Restyaboard. It fits in Restyaboard.
...@@ -9,20 +9,20 @@ describe port(1234) do ...@@ -9,20 +9,20 @@ describe port(1234) do
it { should be_listening } it { should be_listening }
end end
describe docker_container('dockerrestyaboard_restyaboard_1') do describe docker_container('dockerfile_restyaboard_1') do
it { should be_running } it { should be_running }
end end
describe docker_container('dockerrestyaboard_postgres_1') do describe docker_container('dockerfile_postgres_1') do
it { should be_running } it { should be_running }
end end
describe docker_container('dockerrestyaboard_elasticsearch_1') do describe docker_container('dockerfile_elasticsearch_1') do
it { should be_running } it { should be_running }
end end
describe docker_container('dockerrestyaboard_data00restyaboard_1') do describe docker_container('dockerfile_data00restyaboard_1') do
it { should have_volume('/usr/share/nginx/html/media','/volumes/data00restyaboard') } it { should have_volume('/usr/share/nginx/html/media','/volumes/data00restyaboard') }
it { should have_volume('/var/lib/postgresql/data','/volumes/data00postgres') } it { should have_volume('/var/lib/postgresql/data','/volumes/data00postgres') }
it { should have_volume('/usr/share/elasticsearch/data','/volumes/data00elasticsearch') } it { should have_volume('/usr/share/elasticsearch/data','/volumes/data00elasticsearch') }
end end
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment