Raphael Piccolo

Results 35 comments of Raphael Piccolo

pull request or not i'd like to see a working script for mysql 8 :) In the end what i want is a script to start a mysql master slave...

ok, i have a working sequence of command to create a master + a slave + a test ``` docker rm -f mysql_master mysql_slave; rm -rf /root/docker/mysql_slave /root/docker/mysql_master; mkdir -p...

i openned this file : node_modules/twig/twig.js and it looks like it should be this : ```throw new Twig.Error``` everywhere it is (2 places) : ```throw Twig.Error``` Replacing it does throw...

it changes behavior in the sens it emits an uncaughtException with this version (syntax is crazy :)) ``` import Twig from "twig"; try { Twig.renderFile('./views/shit.html.twig', { settings: { 'twig options':...

i went on another machine (ubuntu) in another datacenter. i pulled latest img right now. i started the very same commands same situation. :( i guess lighthouse is not for...

sadly no. i still consider using another storage driver but it needs time to study. by the meantime i dont rm sshfs volumes without disconnecting network or shuting down remote...

Thanks, it would be nice to have some insights / solutions :) The code source is only 300lines of code. So from reading it through, with my in existent go...

its a common strategy with docker volumes. you need to chown to the proper user before running the container. this may work ``` # get userId inside container $> docker...

strange, why sudoing ? you should read the Dockerfile, it creates a user ans switches to it. you can add ``` USER root ``` in your own Dockerfile for maximum...