7 lines
99 B
Bash
Executable File
7 lines
99 B
Bash
Executable File
#!/bin/bash
|
|
rm log.txt
|
|
docker logs myp-frontend >> log.txt
|
|
git add *
|
|
git commit -m "logs"
|
|
git push
|