View main.go
package main | |
import ( | |
"fmt" | |
"os/exec" | |
"github.com/cihub/seelog" | |
) | |
const seewayLogXmlConfig = ` |
View Dockefile
FROM mysql:5.7.20 | |
WORKDIR /var/lib/mysql | |
# after this run, the a.txt is seen in /var/lib/mysql | |
RUN touch a.txt && ls -la | |
# after this run, the a.txt seems to be gone | |
RUN ls -la |