Skip to content
Snippets Groups Projects

Integrate podman in Oniro

Merged Andrei Gherzan requested to merge agherzan/oniro:ag/podman into kirkstone
2 files
+ 13
0
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 77d350f8
    Skopeo is the component that podman uses to comunicate with container
    registries so we configure skopeo for the OS requirements of the
    project.
    
    The most notable change is that we use the application partition for the
    root's graphroot. This is where the data (including images) is stored
    for the root user.
    
    We also explicitly set the storage driver and runtime directory.
    
    Signed-off-by: Andrei Gherzan's avatarAndrei Gherzan <andrei.gherzan@huawei.com>
# SPDX-FileCopyrightText: Huawei Inc.
#
# SPDX-License-Identifier: Apache-2.0
[storage]
driver = "overlay"
runroot = "/run/containers/storage"
graphroot="/run/mount/appdata/user-data/containers/root-rootuser"
Loading