6 lines
105 B
Bash
6 lines
105 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
file=development.yml
|
||
|
|
|
||
|
|
docker compose -f $file down && docker compose -f $file up --build -d
|