Skip to content

Instantly share code, notes, and snippets.

View vinnietech's full-sized avatar

Vincent Verbrugh vinnietech

  • Vinnietech
  • Amsterdam
View GitHub Profile
@vinnietech
vinnietech / docker-compose.yml
Created March 26, 2020 13:24 — forked from flightonary/docker-compose.yml
docker-compose of mongodb and rabbitmq
version: '2'
services:
mongodb:
image: mongo:latest
container_name: mongodb
environment:
- 'MONGODB_USER=user'
- 'MONGODB_PASS=password!'
volumes:
#!/usr/bin/env ruby
# Complete rake tasks script for bash
# Save it somewhere and then add
# complete -C path/to/script -o default rake
# to your ~/.bashrc
# Xavier Shay (http://rhnh.net), combining work from
# Francis Hwang ( http://fhwang.net/ ) - http://fhwang.net/rb/rake-complete.rb
# Nicholas Seckar <[email protected]> - http://www.webtypes.com/2006/03/31/rake-completion-script-that-handles-namespaces
# Saimon Moore <[email protected]>