This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
[ "`echo "$@" | grep -e "docker"`" ] && echo "$@" | cut -c 5- | xargs -I {} cat {} > /tmp/apparmor-profile-docker-default | |
/sbin/apparmor_parser_original "$@" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am dalguete on github. | |
* I am dalguete (https://keybase.io/dalguete) on keybase. | |
* I have a public key ASDcSZrPwPkgviCP94WOxnzr6OH7pssM6emBmmIyEQO7Cgo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MySQL | |
FROM ubuntu | |
RUN apt-get update | |
RUN echo "mysql-server-5.5 mysql-server/root_password password root123" | debconf-set-selections | |
RUN echo "mysql-server-5.5 mysql-server/root_password_again password root123" | debconf-set-selections | |
RUN echo "mysql-server-5.5 mysql-server/root_password seen true" | debconf-set-selections | |
RUN echo "mysql-server-5.5 mysql-server/root_password_again seen true" | debconf-set-selections | |
RUN apt-get install -y mysql-server mysql-client telnet |