Skip to content

Commit 09279e1

Browse files
committed
Rename services to remove "app"
1 parent dd03d89 commit 09279e1

20 files changed

+32
-32
lines changed

docker-compose.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
version: "2"
22

33
services:
4-
voting-app:
5-
build: ./voting-app
4+
vote:
5+
build: ./vote
66
command: python app.py
77
volumes:
8-
- ./voting-app:/app
8+
- ./vote:/app
99
ports:
1010
- "5000:80"
1111

@@ -19,11 +19,11 @@ services:
1919
db:
2020
image: postgres:9.4
2121

22-
result-app:
23-
build: ./result-app
22+
result:
23+
build: ./result
2424
command: nodemon --debug server.js
2525
volumes:
26-
- ./result-app:/app
26+
- ./result:/app
2727
ports:
2828
- "5001:80"
2929
- "5858:5858"

dockercloud.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ db:
44
redis:
55
image: 'redis:latest'
66
restart: always
7-
result-app:
7+
result:
88
autoredeploy: true
9-
image: 'instavote/result-app:latest'
9+
image: 'instavote/result:latest'
1010
ports:
1111
- '80:80'
1212
restart: always
1313
lb:
1414
autoredeploy: true
1515
image: 'dockercloud/haproxy:latest'
1616
links:
17-
- voting-app
17+
- vote
1818
ports:
1919
- "80:80"
2020
roles:
2121
- global
2222
restart: always
23-
voting-app:
23+
vote:
2424
autoredeploy: true
25-
image: 'instavote/voting-app:latest'
25+
image: 'instavote/vote:latest'
2626
restart: always
2727
target_num_containers: 5
2828

result-app/tests/tests.sh

-15
This file was deleted.
File renamed without changes.
File renamed without changes.

result-app/docker-compose.test.yml result/docker-compose.test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ services:
55
sut:
66
build: ./tests/
77
depends_on:
8-
- voting-app
9-
- result-app
8+
- vote
9+
- result
1010
- worker
1111
networks:
1212
- front-tier
1313

14-
voting-app:
15-
build: ../voting-app/
14+
vote:
15+
build: ../vote/
1616
ports: ["80"]
1717
depends_on:
1818
- redis
@@ -21,7 +21,7 @@ services:
2121
- front-tier
2222
- back-tier
2323

24-
result-app:
24+
result:
2525
build: .
2626
ports: ["80"]
2727
depends_on:

result-app/package.json result/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "result-app",
2+
"name": "result",
33
"version": "1.0.0",
44
"description": "",
55
"main": "server.js",
File renamed without changes.
File renamed without changes.
File renamed without changes.

result/tests/tests.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/sh
2+
while ! timeout 1 bash -c "echo > /dev/tcp/vote/80"; do sleep 1; done
3+
curl -sS -X POST --data "vote=a" http://vote > /dev/null
4+
curl -sS -X POST --data "vote=b" http://vote > /dev/null
5+
sleep 10
6+
if phantomjs render.js http://result | grep -q '2 votes'; then
7+
echo -e "\e[42m------------"
8+
echo -e "\e[92mTests passed"
9+
echo -e "\e[42m------------"
10+
exit 0
11+
fi
12+
echo -e "\e[41m------------"
13+
echo -e "\e[91mTests failed"
14+
echo -e "\e[41m------------"
15+
exit 1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

voting-app/app.py vote/app.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)