4 lines
120 B
Bash
Executable file
4 lines
120 B
Bash
Executable file
#!/bin/bash
|
|
[[ $1 ]] && ENV_FILE=${1}.env || ENV_FILE=.env
|
|
export ENV_FILE; docker-compose --env-file $ENV_FILE build
|
|
|