forked from dockersamples/example-voting-app
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
compose and K8s file cleanup (dockersamples#273)
- Loading branch information
1 parent
f0fb81f
commit 226edf0
Showing
13 changed files
with
139 additions
and
509 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# for running in docker compose with prebuilt images | ||
|
||
# version is now using "compose spec" | ||
# v2 and v3 are now combined! | ||
# docker-compose v1.27+ required | ||
|
||
services: | ||
vote: | ||
image: dockersamples/examplevotingapp_vote | ||
depends_on: | ||
redis: | ||
condition: service_healthy | ||
ports: | ||
- "5000:80" | ||
networks: | ||
- front-tier | ||
- back-tier | ||
|
||
result: | ||
image: dockersamples/examplevotingapp_result | ||
depends_on: | ||
db: | ||
condition: service_healthy | ||
ports: | ||
- "5001:80" | ||
networks: | ||
- front-tier | ||
- back-tier | ||
|
||
worker: | ||
image: dockersamples/examplevotingapp_worker | ||
depends_on: | ||
redis: | ||
condition: service_healthy | ||
db: | ||
condition: service_healthy | ||
networks: | ||
- back-tier | ||
|
||
redis: | ||
image: redis:alpine | ||
volumes: | ||
- "./healthchecks:/healthchecks" | ||
healthcheck: | ||
test: /healthchecks/redis.sh | ||
interval: "5s" | ||
ports: ["6379"] | ||
networks: | ||
- back-tier | ||
|
||
db: | ||
image: postgres:15-alpine | ||
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: | ||
front-tier: | ||
back-tier: |
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.