mirror of
https://github.com/containers/podman.git
synced 2025-10-12 08:45:37 +08:00
Document .containerenv in manpages. Move it to /run.
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #533 Approved by: baude
This commit is contained in:
@ -21,6 +21,14 @@ If the IMAGE is not already loaded then **podman run** will pull the IMAGE, and
|
||||
all image dependencies, from the repository in the same way running **podman
|
||||
pull** IMAGE, before it starts the container from that image.
|
||||
|
||||
Several files will be automatically created within the container when it is run.
|
||||
These include `/etc/hosts`, `/etc/hostname`, and `/etc/resolv.conf` to manage
|
||||
networking. These will be based on the host's version of the files, though they
|
||||
can be customized with options (for example, **--dns** will override the host's
|
||||
DNS servers in the created `resolv.conf`). Additionally, an empty file is
|
||||
created in each container to indicate to programs they are running in a
|
||||
container. This file is located at `/run/.containerenv`.
|
||||
|
||||
## OPTIONS
|
||||
**--add-host**=[]
|
||||
Add a custom host-to-IP mapping (host:ip)
|
||||
|
@ -673,13 +673,14 @@ func (c *Container) makeBindMounts() error {
|
||||
}
|
||||
|
||||
// Make .containerenv
|
||||
if _, ok := c.state.BindMounts["/.containerenv"]; !ok {
|
||||
// Empty file, so no need to recreate if it exists
|
||||
if _, ok := c.state.BindMounts["/run/.containerenv"]; !ok {
|
||||
// Empty string for now, but we may consider populating this later
|
||||
containerenvPath, err := c.writeStringToRundir(".containerenv", "")
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "error creating containerenv file for container %s", c.ID())
|
||||
}
|
||||
c.state.BindMounts["/.containerenv"] = containerenvPath
|
||||
c.state.BindMounts["/run/.containerenv"] = containerenvPath
|
||||
}
|
||||
|
||||
return nil
|
||||
|
Reference in New Issue
Block a user