node-walletconnect-bridge icon indicating copy to clipboard operation
node-walletconnect-bridge copied to clipboard

docker setup return error

Open dragonku7 opened this issue 4 years ago • 2 comments

i try to deploy bridge server, and return some error

WALLET_IMAGE='walletconnect/proxy:master'
NGINX_IMAGE='walletconnect/nginx:master'
BRIDGE_URL=
CERTBOT_EMAIL=
docker stack deploy -c ops/docker-compose.yml
-c ops/docker-compose.prod.yml walletconnect unsupported Compose file version: 3.7 make: *** [deploy] Error 1

pls tell me how can solve this problem? tks

dragonku7 avatar Aug 20 '20 06:08 dragonku7

Hello @dragonku7,

The first thing to check is whether you have the right docker engine installed. This table shows which compose files are compatible with the docker engine: https://docs.docker.com/compose/compose-file/#compose-and-docker-compatibility-matrix

This command should tell you which docker version you have:

docker version --format "{{.Client.Version}}"

You need docker version > 18.06.0+ for the compose file v3.7 to work.

Let me know if that helps.

sbc64 avatar Aug 23 '20 18:08 sbc64