4 lines
125 B
Bash
4 lines
125 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Run docker compose with tee to show output and save to file
|
||
|
|
docker compose up -d --build |& tee build_logs.txt
|