removes unecessary example
This commit is contained in:
parent
1dde500044
commit
56217f1502
4 changed files with 0 additions and 29 deletions
|
@ -1,5 +0,0 @@
|
|||
#!/bin/bash -eux
|
||||
URL=${PWD##*/}
|
||||
db_container_name=`echo ${URL}_db_1 | sed "s/\.//"`; \
|
||||
|
||||
docker exec $db_container_name mongodump
|
|
@ -1,5 +0,0 @@
|
|||
#!/bin/bash -eux
|
||||
/opt/bin/docker-compose kill || :
|
||||
/opt/bin/docker-compose rm -f || :
|
||||
/opt/bin/docker-compose up
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
#!/bin/bash -eux
|
||||
/opt/bin/docker-compose stop
|
|
@ -1,17 +0,0 @@
|
|||
db:
|
||||
image: mongo
|
||||
volumes:
|
||||
- data/runtime/db:/data/db
|
||||
- data/dump:/dump
|
||||
command: mongod --smallfiles
|
||||
web:
|
||||
image: mateorapp
|
||||
environment:
|
||||
- MONGO_URL=mongodb://db:27017/meteor
|
||||
- ROOT_URL=https://meteorapp.test
|
||||
links:
|
||||
- db:db
|
||||
volumes:
|
||||
- logs:/home/app/logs
|
||||
ports:
|
||||
- 80
|
Loading…
Reference in a new issue