Skip to content

Commit

Permalink
Merge pull request #645 from bitcoin-sv/feat/spv-929-start-sh-choose-…
Browse files Browse the repository at this point in the history
…versions

chore(SPV-929): allow to select version of services when using start.sh
  • Loading branch information
dorzepowski authored Jul 10, 2024
2 parents f0e3f0d + 59621f3 commit ac3ad4e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name: "spv-wallet"
services:
wallet-frontend:
image: bsvb/spv-wallet-web-frontend:latest
image: bsvb/spv-wallet-web-frontend:${RUN_WEB_FRONTEND_VERSION:-latest}
pull_policy: always
labels:
- "traefik.enable=true"
Expand All @@ -20,7 +20,7 @@ services:
target: /usr/share/nginx/html/env-config.json

wallet-backend:
image: bsvb/spv-wallet-web-backend:latest
image: bsvb/spv-wallet-web-backend:${RUN_WEB_BACKEND_VERSION:-latest}
pull_policy: always
labels:
- "traefik.enable=true"
Expand All @@ -42,7 +42,7 @@ services:
condition: service_healthy

block-headers-service:
image: bsvb/block-headers-service:latest
image: bsvb/block-headers-service:${RUN_BHS_VERSION:-latest}
pull_policy: always
labels:
- "traefik.enable=true"
Expand All @@ -59,7 +59,7 @@ services:
- block-headers-service-data:/app/data

spv-wallet-admin:
image: bsvb/spv-wallet-admin:latest
image: bsvb/spv-wallet-admin:${RUN_ADMIN_VERSION:-latest}
pull_policy: always
labels:
- "traefik.enable=true"
Expand All @@ -77,7 +77,7 @@ services:
target: /usr/share/nginx/html/env-config.json

spv-wallet:
image: bsvb/spv-wallet:latest
image: bsvb/spv-wallet:${RUN_SPVWALLET_VERSION:-latest}
pull_policy: always
labels:
- "traefik.enable=true"
Expand Down

0 comments on commit ac3ad4e

Please sign in to comment.