Git Product home page Git Product logo

toolbox-images's Introduction

Personal Toolbox images

I've switched my Laptop to Fedora Silverblue so I needed some images for Toolbox in order to have my development environments ready. I've decided to make my own since I already have some preferences regarding the base I'm upon which I'll build other images.

In the images directory, you can find the Dockerfiles for all images I made. They are very opinionated and I don't plan on accepting any feature requests. You are however free to use those Dockerfiles freely and build upon them to make your own.

Verify signed images

To verify that images are signed when pulling them, there are some configuration files that need to be modified. Firstly, add the public key to your machine.

curl https://raw.githubusercontent.com/dusansimic/toolbox-images/main/cosign.pub | sudo tee /etc/pki/containers/dusansimic-toolbox-images.pub

Next, you'll need to add a registry configuration that will allow for checking that images are signed. Create a file /etc/containers/registries.d/dusansimic-toolbox-images.yaml

docker:
  ghcr.io/dusansimic/toolbox-images:
    use-sigstore-attachments: true

Finally, add the policy for checking signatures to the /etc/containers/policy.json. Be careful to not remove any other configurations in this file!

{
  "transports": {
    "docker": {
      "ghcr.io/dusansimic/toolbox-images": [
        {
          "type": "sigstoreSigned",
          "keyPath": "/etc/pki/containers/dusansimic-toolbox-images.pub",
          "signedIdentity": {
            "type": "matchRepository"
          }
        }
      ]
    }
  }
}

toolbox-images's People

Contributors

dusansimic avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.