6 lines
148 B
Bash
6 lines
148 B
Bash
#!/bin/bash
|
|
# Deploy script for git stack
|
|
cd /volume1/docker/compose-files
|
|
set -a && . ./git.env && set +a
|
|
docker stack deploy git -c git.yaml "$@"
|