I think you should also spare a second or two for nasrat's 2409 ;)
because right now, Ghost containers become unrestartable after being stopped
nasrat
It may still need work. Some pointers to intent of Ghost welcome. AIUI for reparenting existing list containers
dockerbot joined the channel
dockerbot
[docker] tianon force-pushed enable_sigproxy_default from af67913 to 02d93c5: http://git.io/ZRqgPg
docker/enable_sigproxy_default 02d93c5 Victor Vieux: Enable sig-proxy by default in run and attach
dockerbot has left the channel
SvenDowideit has quit
SvenDowideit joined the channel
SvenDowideit has quit
SvenDowideit joined the channel
dockerbot joined the channel
[docker] scottbessler opened pull request #2431: Expose {NAME}_IP env variable when linking, Closes #2430 (master...2430-links-ip-env) http://git.io/1MAS4A
dockerbot has left the channel
tianon
:o hack/PACKAGERS.md doesn't mention libsqlite3!
for either building or for runtime
which it's technically building, but possibly runtime depending on compilation method
scottbessler_ joined the channel
shykes
tianon: good catch
let's make it a build dependency
tianon
hey, that's what packagers relations is for, right? :)
shykes
it's implicit that if you're building dynamically, all lib dependencies will be required at runtime also
:
:)
tianon
true :)
do we have an explicit known minimum version?
shykes
no... I would tentatively put the latest stable release
tianon
lol ok :)
shykes
If that causes problems for a distro, we will figure out a solution
tianon
and by that you mean walk backwards until everyone is happy? :)
shykes
but sqlite3 is famous for its reliability, so I think using its latest stable release is a good bet
tianon
sounds good to me
shykes
I would say walk backwards until nobody can reasonably argue that they are unhappy
tianon
as a hack maintainer - lemme check real fast as PR :)
latest sqlite stable is 3.8.1, latest Gentoo stable is 3.7.17, wheezy is at 3.7.13, precise is at 3.7.9
f18 is at 3.7.13, f19/f20 are at 3.8.0
dockerbot joined the channel
dockerbot
[docker] SvenDowideit opened pull request #2432: IRC: add SIGTERM and SIGKILL details to docker stop and kill docco (master...doc-stop-kill-details) http://git.io/L9Dw9A
dockerbot has left the channel
shykes
nice
how old is 3.7.9?
zz_crosbymichael is now known as crosbymichael
well iOS 6 and 7 ship 3.7.13
and ios 5 ships 3.7.7
tianon
SQLite Release 3.7.9 On 2011-11-01
shykes
so I think 3.7.9 will be fine :)
tianon
SQLite Release 3.7.7 On 2011-06-24
:)
it seems like some of my changes to hack/PACKAGERS.md got lost somewhere on the way to master
I'm gonna have to dig a little, because I know I've fixed some of these inconsistencies somewhere :P
buck2 has quit
shykes
maybe in one of the rc branches?
or md?
dm
if it's dm you're safe, they will get merged eventually
tianon
yeah, I'm checking that now :)
shykes
if it's rc, make sure you save them, those are dead ends
crosbymichael
tianon: git never lies
tianon
looks like they were in DM somehow :)
crosbymichael
maybe you just think you did
tianon
oh, I so did, just not in links :)
scottbessler_
crosbymichael, re 2431 i responded. we can talk here or there, whichever is more appropriate :)
crosbymichael
here is fine
scottbessler_
am i missing an obvious way to extract IP from the proto://ip:port env variable? regex works, but seems like it could be a common enough use case to make easier
crosbymichael
parsing tcp://192.168.1.1:8080 is not very hard
scottbessler_
yeah, in the situations i've wanted linking i've only needed the ip, so thought it would be a helpful addition
tianon
er, IP="${ADDR#tcp://}%%"; IP="${IP%%:*}"
crosbymichael
because networking will be locked down to only the exposed ports
building docker outside docker for packaging is now easier than ever :D
and by easier, I include cleaner, because that Makefile was really heinous :D
patricioe joined the channel
jontg joined the channel
ncadou has quit
jontg has quit
shykes
next step: dynbinary for everyone
[o__o]: m tianon
[o__o]: !m tianon
[o__o]
You're doing good work, tianon!
crosbymichael
dynbinary for everyone?
what 8|?
shykes
just a guess
crosbymichael
shykes: are you finally giving up and letting everyone have a dynamic binary?
shykes
I suspect we'll get tired of supporting 2 different builds
I'm getting there... slowly...
tianon
I only see benefit for packaging, for what that's worth :P
those silly packagers
shykes
I think at the end of the day, the priority is quality adoption: make it easier for more people to have a quality installation of docker
tianon
shykes: I've realized something we didn't think about in our dynbinary "wrong dockerinit" error message
and by realized, I mean come across in my actual usage
it shouldn't be unexpected, but it can be surprising
shykes
whatever method gets quality builds of docker installed on more machines, consistently, gets my vote.
tianon: what's that?
tianon
if I have docker running with its sha1-paired dockerinit, and docker run is working like a charm, then if I ever update docker without restarting docker (ie, my dockerinit gets replaced and my docker gets replaced, but the running docker does not), I run into the error message and it seems nonintuitive because it claims my docker is compiled incorrectly
even just recompiling runs into that, because dockerinit doesn't recompile deterministically
so our sha1 changes, but the running docker doesn't necessarily
this is especially important on systems like Gentoo, where init stuff is all 100% manual, and the packager doesn't touch the running system except to update packages/files
but relevant anywhere init stuff is handled manually
or via a separate process
my only idea to solve it is that instead of bind-mounting the dockerinit directly from where it's at, we open it at docker start and bind-mount the opened file handle (like we do with docker itself via /proc)
crosbymichael
scottbessler_: I'm still thinking
tianon
but that feels wrong and dirty
as does any manual touching of /proc
imo
dockerbot joined the channel
dockerbot
[docker] hamo opened pull request #2434: rewrite protocol check with switch-case in daemon (master...unlink_err_v2) http://git.io/x4359Q
dockerbot has left the channel
crosbymichael
tianon: can we not use a shell script for dockerinit? i was not part of that discussion so I don't remember