mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-06 06:25:40 +08:00
9 lines
No EOL
165 B
Bash
Executable file
9 lines
No EOL
165 B
Bash
Executable file
#!/bin/sh
|
|
cd $(dirname $0)
|
|
|
|
DOCKER_COMPOSE="docker-compose"
|
|
if docker --help | grep -q -F 'compose*'; then
|
|
DOCKER_COMPOSE="docker compose"
|
|
fi
|
|
|
|
$DOCKER_COMPOSE up |