Last active
November 20, 2022 16:11
-
-
Save faizanbashir/36b81228ea941dcc49575dc69b8369d9 to your computer and use it in GitHub Desktop.
Voting-app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
vote: | |
build: ./vote | |
command: python app.py | |
volumes: | |
- ./vote:/app | |
ports: | |
- "5000:80" | |
networks: | |
- front-tier | |
- back-tier | |
result: | |
build: ./result | |
command: nodemon server.js | |
volumes: | |
- ./result:/app | |
ports: | |
- "5001:80" | |
- "5858:5858" | |
networks: | |
- front-tier | |
- back-tier | |
worker: | |
build: | |
context: ./worker | |
depends_on: | |
- "redis" | |
networks: | |
- back-tier | |
redis: | |
image: redis:alpine | |
container_name: redis | |
ports: ["6379"] | |
networks: | |
- back-tier | |
db: | |
image: postgres:9.4 | |
container_name: db | |
volumes: | |
- "db-data:/var/lib/postgresql/data" | |
networks: | |
- back-tier | |
volumes: | |
db-data: | |
networks: | |
front-tier: | |
back-tier: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ERROR: Cannot locate specified Dockerfile: Dockerfile