Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Collector/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM node:4-onbuild
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions Server/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM node:4-onbuild
33 changes: 33 additions & 0 deletions Server/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "mangled-metal-bot",
"version": "0.0.1",
"description": "A bot to tweet",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CEREBR4L/MangledMetal.git"
},
"keywords": [
"bot",
"twitter",
"mangled"
],
"author": "CEREBR4L",
"license": "ISC",
"bugs": {
"url": "https://github.com/CEREBR4L/MangledMetal/issues"
},
"homepage": "https://github.com/CEREBR4L/MangledMetal#readme",
"dependencies": {
"express": "^4.14.0",
"forever": "^0.15.2",
"forismatic-node": "^1.1.4",
"mongoose": "^4.6.3",
"node-env-file": "^0.1.8",
"twitter": "^1.4.0"
}
}
File renamed without changes.
1 change: 1 addition & 0 deletions Tweeter/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM node:4-onbuild
33 changes: 33 additions & 0 deletions Tweeter/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "mangled-metal-bot",
"version": "0.0.1",
"description": "A bot to tweet",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CEREBR4L/MangledMetal.git"
},
"keywords": [
"bot",
"twitter",
"mangled"
],
"author": "CEREBR4L",
"license": "ISC",
"bugs": {
"url": "https://github.com/CEREBR4L/MangledMetal/issues"
},
"homepage": "https://github.com/CEREBR4L/MangledMetal#readme",
"dependencies": {
"express": "^4.14.0",
"forever": "^0.15.2",
"forismatic-node": "^1.1.4",
"mongoose": "^4.6.3",
"node-env-file": "^0.1.8",
"twitter": "^1.4.0"
}
}
File renamed without changes.
21 changes: 21 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: '1'
services:
server:
build: ./Server
volumes:
- ./myFace:/myFace
- ./quotes:/quotes
ports:
- "8081:8081"
tweeter:
build: ./Tweeter
volumes:
- ./quotes:/quotes
ports:
- "82:82"
collector:
build: ./Collector
volumes:
- ./quotes:/quotes
ports:
- "8083:8083"