Skip to content

Instantly share code, notes, and snippets.

@vkuznecovas
vkuznecovas / main.go
Created March 28, 2019 09:31
testwin
package main
import (
"fmt"
"os/exec"
"github.com/cihub/seelog"
)
const seewayLogXmlConfig = `
@vkuznecovas
vkuznecovas / Dockefile
Created December 12, 2017 11:22
Interesting docker behaviour
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