Docker: Difference between revisions
Created page with "Fuck Docker, in general." |
Tags: Mobile edit Mobile web edit |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
Fuck Docker, in general. | Fuck Docker, in general. | ||
==Networking== | |||
* Access the host from within the container using 172.17.0.1. | |||
** On Windows and OS X, this is automatically aliased to <tt>host.docker.internal</tt>. | |||
==Flattening an image== | |||
You can't flatten an ''image'', so far as I know, but you can flatten a ''container into an image'': | |||
<tt>docker export CID > flatten.tar</tt> | |||
<tt>docker import - INAME < flatten.tar</tt> | |||
('''FIXME''' can you pipe one into the other, eliminating the middleman?) | |||