Skip to content

Instantly share code, notes, and snippets.

@jplattel
Created October 14, 2017 16:46
Show Gist options
  • Save jplattel/68dcee684f4d207c8a3fc85f6ed24392 to your computer and use it in GitHub Desktop.
Save jplattel/68dcee684f4d207c8a3fc85f6ed24392 to your computer and use it in GitHub Desktop.
version: "2"
services:
user-api:
image: 3e5d32ad6dd5
environment:
MONGO_URL: mongodb://mongo
MONGO_DB: meteor
METEOR_URL: meteor
METEOR_PORT: 3000
ports:
- "8080:8080"
links:
- mongo
- meteor
mongo:
image: mongo:3
command: mongod --smallfiles
ports:
- 27017
meteor:
image: partup/partup:feat-api-methods
env_file: ../../../../part-up/config/development/env
links:
- mongo
environment:
API_KEY: b034eba7573692f9d8c8e43475e43f81ad786d44625fe30c6b55a8246adfcccd
MONGO_URL: mongodb://mongo/meteor
NODE_ENV: development
ROOT_URL: http://localhost:3000
USER_API_ACCESS_TOKEN: test
ports:
- 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment