test: add rest of the tests
This commit is contained in:
parent
1c82643dca
commit
366f605efb
1 changed files with 31 additions and 63 deletions
|
@ -1,74 +1,42 @@
|
||||||
services:
|
services:
|
||||||
vote:
|
frontend:
|
||||||
build: ./
|
image: awesome/webapp
|
||||||
# use python rather than gunicorn for local dev
|
|
||||||
command: python app.py
|
|
||||||
depends_on:
|
|
||||||
redis:
|
|
||||||
condition: service_healthy
|
|
||||||
volumes:
|
|
||||||
- app
|
|
||||||
ports:
|
|
||||||
- "5000:80"
|
|
||||||
networks:
|
networks:
|
||||||
- front-tier
|
- front-tier
|
||||||
- back-tier
|
- back-tier
|
||||||
|
|
||||||
result:
|
monitoring:
|
||||||
build: ./
|
image: awesome/monitoring
|
||||||
# use nodemon rather than node for local dev
|
networks:
|
||||||
command: nodemon server.js
|
- admin
|
||||||
depends_on:
|
|
||||||
db:
|
|
||||||
condition: service_healthy
|
backend:
|
||||||
|
image: awesome/backend
|
||||||
|
networks:
|
||||||
|
back-tier:
|
||||||
|
aliases:
|
||||||
|
- database
|
||||||
|
admin:
|
||||||
|
aliases:
|
||||||
|
- mysql
|
||||||
volumes:
|
volumes:
|
||||||
- app
|
- type: volume
|
||||||
|
source: db-data
|
||||||
|
target: /data
|
||||||
|
volume:
|
||||||
|
nocopy: true
|
||||||
|
- type: bind
|
||||||
|
source: /var/run/postgres/postgres.sock
|
||||||
|
target: /var/run/postgres/postgres.sock
|
||||||
|
depends_on:
|
||||||
|
- monitoring
|
||||||
ports:
|
ports:
|
||||||
- "5001:80"
|
- "8000:5010"
|
||||||
- "5858:5858"
|
|
||||||
networks:
|
|
||||||
- front-tier
|
|
||||||
- back-tier
|
|
||||||
|
|
||||||
worker:
|
|
||||||
build:
|
|
||||||
context: ./
|
|
||||||
depends_on:
|
|
||||||
redis:
|
|
||||||
condition: service_healthy
|
|
||||||
db:
|
|
||||||
condition: service_healthy
|
|
||||||
networks:
|
|
||||||
- back-tier
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis:5.0-alpine3.10
|
|
||||||
volumes:
|
|
||||||
- "./healthchecks:/healthchecks"
|
|
||||||
healthcheck:
|
|
||||||
test: /healthchecks/redis.sh
|
|
||||||
interval: "5s"
|
|
||||||
ports: ["6379"]
|
|
||||||
networks:
|
|
||||||
- back-tier
|
|
||||||
|
|
||||||
db:
|
|
||||||
image: postgres:9.4
|
|
||||||
environment:
|
|
||||||
POSTGRES_USER: "postgres"
|
|
||||||
POSTGRES_PASSWORD: "postgres"
|
|
||||||
volumes:
|
|
||||||
- "db-data:/var/lib/postgresql/data"
|
|
||||||
- "./healthchecks:/healthchecks"
|
|
||||||
healthcheck:
|
|
||||||
test: /healthchecks/postgres.sh
|
|
||||||
interval: "5s"
|
|
||||||
networks:
|
|
||||||
- back-tier
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
db-data:
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
front-tier:
|
front-tier:
|
||||||
back-tier:
|
back-tier:
|
||||||
|
admin:
|
||||||
|
volumes:
|
||||||
|
db-data:
|
||||||
|
|
Loading…
Reference in a new issue