obs-build icon indicating copy to clipboard operation
obs-build copied to clipboard

Container build can't find base container

Open vladiskuz opened this issue 5 months ago • 2 comments

I have my instance of OBS and I'm trying to build containers. I have base container that built in the same repo. Then I have the following container

<?xml version="1.0" encoding="utf-8"?>
<image schemaversion="7.4" name="os">
  <description type="system">
    <author>Me</author>
    <contact>[email protected]</contact>
    <specification>OS image container</specification>
    <license>MIT</license>
  </description>
  <preferences>
    <type image="docker" derived_from="obsrepositories:/this/is/my-base#latest">
      <containerconfig
        name="this/is/my-os" tag="latest"
        maintainer="Me">
        <subcommand execute="kolla_start"/>
      </containerconfig>
    </type>
    <version>1.0.0</version>
    <packagemanager>dnf</packagemanager>
    <rpm-excludedocs>true</rpm-excludedocs>
  </preferences>
  <repository>
    <source path="obsrepositories:/"/>
  </repository>
  <packages type="image">
    <package name="cronie"/>
  </packages>
</image>

In web UI I can see -- nothing provides container:this/is/my-base:latest I can see nothing in my logs but I can pull this/is/my-base container Looks like this is a bug

vladiskuz avatar Sep 17 '24 18:09 vladiskuz