3 lines
118 B
Bash
Executable file
3 lines
118 B
Bash
Executable file
#!/bin/bash
|
|
[[ $1 ]] && ENV_FILE=${1}.env || ENV_FILE=.env
|
|
export ENV_FILE; docker-compose --env-file $ENV_FILE up -d
|