microservices - How to set up Seneca with Docker Swarm -


hello trying set simple seneca project in docker swarm on digitalocean.

repo: https://github.com/vforv/hapi-seneca-ts

and here set up: https://github.com/vforv/hapi-seneca-ts/blob/master/system/fuge/docker-swarm.yml

version: '3'  networks:   trifacta:     driver: overlay  services:   bases:     image: vforv/hapi-seneca-ts:v1     networks:       trifacta:         aliases:            - bases     command: bash -c "cd bases-service && npm start"   api:     image: vforv/api-gateway:v1     ports:         - "5000:5000"     networks:         - trifacta     command: bash -c "cd api-gateway && npm start"   ping:     image: vforv/ping-service:v1     networks:         - trifacta     command: bash -c "cd ping-service && npm start" 

it not working looks problem service connections... somethings this: death loop....

what can problem?


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -