Skip to content
Snippets Groups Projects
deploy.sh 269 B
Newer Older
Arthur Le Bars's avatar
Arthur Le Bars committed
#!/usr/bin/env bash

if ! docker swarm init | grep -q 'Error'
then
    docker swarm init
fi

cd $2
Arthur Le Bars's avatar
Arthur Le Bars committed
docker stack deploy -c docker-compose.yml traefik
cd $1
docker stack deploy -c docker-compose.yml $1

cd $2
docker stack deploy -c docker-compose.yml traefik
cd ..