8 lines
155 B
Bash
Executable File
8 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FILE_NAME="docker-compose-dev.yaml"
|
|
|
|
# CACHE="--no-cache"
|
|
|
|
docker compose -f ${FILE_NAME} build ${CACHE}
|
|
docker compose -f ${FILE_NAME} up -d |