Skip to content
Snippets Groups Projects
Commit 56217f15 authored by Pierre Ozoux's avatar Pierre Ozoux
Browse files

removes unecessary example

parent 1dde5000
No related branches found
No related tags found
No related merge requests found
#!/bin/bash -eux
URL=${PWD##*/}
db_container_name=`echo ${URL}_db_1 | sed "s/\.//"`; \
docker exec $db_container_name mongodump
#!/bin/bash -eux
/opt/bin/docker-compose kill || :
/opt/bin/docker-compose rm -f || :
/opt/bin/docker-compose up
#!/bin/bash -eux
/opt/bin/docker-compose stop
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment