DeiC-HPC / cotainr

cotainr - a user space Apptainer/Singularity container builder.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cotainr

CI Documentation Status

cotainr - a user space Apptainer/Singularity container builder.

cotainr makes it easy to build Singularity/Apptainer containers for certain use cases.

$ cotainr build --base-image docker://ubuntu:22.04 --conda-env <YOUR_CONDA_ENV.yml>

Licensing Information

cotainr is licensed under the European Union Public License (EUPL) 1.2. See the LICENSE file for details.

Your use of cotainr is subject to the terms of the applicable component licenses as listed below. By using cotainr, you agree to fully comply with the terms of these component licenses. If you do not accept these license terms, do not use cotainr.

Component License URL Cotainr use
Miniforge BSD 3-clause Miniforge License Miniforge is used to bootstrap conda environments when running cotainr build --conda-env...

Documentation

Our documentation is hosted here on Read the Docs.

Installation

cotainr has no external dependencies other than Python >= 3.8 and Singularity/Apptainer. This means that a release can be unpacked and run directly from the bin/ directory.

Easybuild

If you are using easybuild, then here is an easyconfig, you can use:

easyblock = 'Tarball'

name = 'cotainr'
version = '2023.11.0'
homepage = 'https://github.com/DeiC-HPC/container-builder'
description = 'cotainr is a tool that helps making Singularity/Apptainer containers.'

sources = [ {
  'filename': '%(name)s-%(version)s.tar.gz',
  'download_filename': '%(version)s.tar.gz',
  'source_urls':       ['https://github.com/DeiC-HPC/cotainr/archive/refs/tags'],
} ]

toolchain = SYSTEM

systems = """{
  "lumi-g": {
    "base-image": "docker://rocm/dev-ubuntu-22.04:5.5.1-complete"
  },
  "lumi-c": {
    "base-image": "docker://ubuntu:22.04"
  }
}"""

postinstallcmds = ['cd %(installdir)s/ ; cat >systems.json <<EOF\n' + systems + '\nEOF\n']

sanity_check_paths = {
    'files': ['bin/cotainr'],
    'dirs': ['cotainr'],
}

sanity_check_commands = ['cotainr']

About

cotainr - a user space Apptainer/Singularity container builder.

License:European Union Public License 1.2


Languages

Language:Python 100.0%