专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像 官方专业版轩辕镜像 官方专业版官方专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 1072982923

zenika/ztraining2strigo Docker 镜像 - 轩辕镜像

ztraining2strigo
zenika/ztraining2strigo
zenika
Create Strigo class for Zenika training.
0 次下载
💣 CI/CD 卡在拉镜像?问题不在代码,在镜像源
镜像简介版本下载
💣 CI/CD 卡在拉镜像?问题不在代码,在镜像源

Ztraining2strigo

Create Strigo class for Zenika training.

Install

Windows
  1. Download the ztraining2strigo-x.y.z.exe from latest release.
  2. Rename it to ztraining2strigo.exe
  3. Add it to your PATH

An alternative is to follow the procedure for other OS.

Other OS
  1. Make sure to have Python >= 3.11 installed.

  2. Download the ztraining2strigo-x.y.z-py3-none-any.whl from latest release.

  3. Install the wheel package:

    shell
    pip install ztraining2strigo-x.y.z-py3-none-any.whl
    
Docker
  1. Get the image zenika/ztraining2strigo:x.y.z:

    shell
    docker image pull zenika/ztraining2strigo:x.y.z
    
  2. Define an alias ztraining2strigo:

    shell
    alias ztraining2strigo='docker container run --rm --volume $(pwd):/training --user $(id -u):$(id -g) --env STRIGO_ORG_ID --env STRIGO_API_KEY --env Z2S_TRACE_HTTP --interactive --tty zenika/ztraining2strigo:x.y.z'
    

Strigo authentication

  1. Go to [***]
  2. Scroll to section "Authentication Credentials"
  3. Define the environment variables:
  • STRIGO_ORG_ID with the value of "Organization ID"
  • STRIGO_API_KEY with the value of "API Key"

If the environment variables are not set, the Strigo credentials will be asked when launching the tool.

Usage

  1. Go to the root of your training
  2. Launch any command of the ztraining2strigo binary
shell
$ ztraining2strigo --help
usage: ztraining2strigo [-h] [--config CONFIG] COMMAND ...

positional arguments:
  COMMAND          sub-command help
    create         Create config for new Strigo class. The class parameters are asked interactively.
    retrieve       Retrieve config from existing Strigo class
    update         Update Strigo class from config

optional arguments:
  -h, --help       show this help message and exit
  --config CONFIG
Retrieve configuration from existing Strigo class
shell
$ ztraining2strigo retrieve --help
usage: ztraining2strigo retrieve [-h] CLASS_ID

positional arguments:
  CLASS_ID    Existing Strigo class ID

optional arguments:
  -h, --help  show this help message and exit

This command can be used to create the configuration from existing Strigo class.

  • The configuration will be stored inside a strigo.json file at the root of your training (or one referenced by --config)
  • The presentation filename will be searched recursively in the training directory and used in config if found, otherwise just prefixed with PDF/
  • The presentation
  • The init scripts will be downloaded into Installation/strigo/init_<machine_name>.sh
  • The post launch scripts will be downloaded into Installation/strigo/post_launch_<machine_name>.sh

After launching this command, you can:

  • Edit the generated configuration
  • Reorganize the scripts to mutualize if possible/necessary
Create configuration from scratch
shell
$ ztraining2strigo create --help
usage: ztraining2strigo create [-h]

optional arguments:
  -h, --help  show this help message and exit

This command can be used to create a configuration and the corresponding Strigo class.

  • All necessary elements of a Strigo class will be asked interactively
  • The configuration will be stored inside a strigo.json file at the root of your training (or one referenced by --config)
  • The class will be created on Strigo
Update Strigo class from configuration
shell
$ ztraining2strigo update --help
usage: ztraining2strigo update [-h] [--dry-run] [--diff]

optional arguments:
  -h, --help     show this help message and exit
  --dry-run, -n  Do not perform update
  --diff, -d     Display diff of changes to apply in machines scripts

This command can be used to update a Strigo class from local configuration.

  • Update is idempotent: if Strigo class is already as described by configuration, nothing will be done
  • It is possible to check if an updated should be performed by using the --dry-run option

Configuration

Configuration is stored in JSON format inside a strigo.json file at the root of your training (or one referenced by --config).

There is a JSON Schema available at <[***]>.

  • id: the Strigo ID of the class, shouldn't be changed
  • name: the name of the class
  • description: the list of lines of description of the class (can be empty list [])
  • labels: the list of labels the class (can be empty list [])
  • presentations: the list of presentation materials, can only contains 1 element for now (Strigo model)
    • file: the path to presentation file (typically pdf/Zenika-Formation-xxx-Slides.pdf or pdf/Zenika-training-material-Slides.pdf)
    • notes_source: the path to the listing of slides for notes extraction (should be Slides/slides.json)
  • resources: the list of lab machines
    • name: the display name of the machine
    • instance_type: the size of the machine (one of t3.medium, t3.large or t3.xlarge, see AWS EC2 T3 Instances)
    • image: the machine image, can be the normalized name of the preconfigured Strigo images (lower case, space replaced by simple hyphen -), or a custom image:
      • image_id: the AMI ID
      • image_user: the default user of the AMI
      • ec2_region: the region of the AMI
    • init_scripts: the list of init scripts to use for the machine, content of all the scripts will be concatenated into 1 init script in Strigo. Can be either:
      • a reference to a local script:
        • path: the path of the local script inside the training repository
      • a reference to a script from strigo-init-script-libs:
        • script: the filename of the script
        • version: the git version of the script to get (defaults to main)
        • env: the mapping of environment variables for the script
    • post_launch_scripts: the list of post launch batch scripts (Windows only) to use for the machine, content of all the scripts will be concatenated into 1 init script in Strigo. Same format as init_scripts
    • view_interface: the default interface of the machine (one of terminal or desktop, defaults to none)
    • webview_links: the list of web interfaces of the machine:
      • name: the name of the interface
      • url: the URL of the interface (something of the form [***]<port>)

Example:

json
{
  "$schema": "[***]",
  "name": "My training",
  "id": "43t8s3ZNSGwy89Ffo",
  "description": [
    "The description of the training",
    "",
    "Can be on multiple lines in a list"
  ],
  "presentations": [
    {
      "file": "pdf/Zenika-training-material-Slides.pdf",
      "notes_source": "Slides/slides.json"
    }
  ],
  "resources": [
    {
      "name": "machine1",
      "instance_type": "t2.medium",
      "image": "ubuntu-16.04.2",
      "init_scripts": [
        {
          "path": "Installation/strigo/init_all.sh"
        },
        {
          "path": "Installation/strigo/init_machine1.sh"
        },
        {
          "script": "code-server.sh",
          "env": {
            "code_server_version": "3.11.1",
            "code_server_extensions": "ms-azuretools.vscode-docker coenraads.bracket-pair-colorizer-2",
            "code_server_settings": "{\"workbench.colorTheme\": \"Default Dark+\"}"
          }
        }
      ],
      "post_launch_scripts": [],
      "webview_links": [
        {
          "name": "code-server",
          "url": "[***]"
        }
      ]
    },
    {
      "name": "machine2",
      "instance_type": "t2.xlarge",
      "image": {
        "image_id": "ami-0b209583a4a1146dd",
        "image_user": "ubuntu",
        "ec2_region": "eu-west-3"
      },
      "init_scripts": [
        {
          "path": "Installation/strigo/init_all.sh"
        }
      ],
      "post_launch_scripts": [],
      "webview_links": []
    }
  ]
}

Build package

Building requirement is a Python environment >= 3.11.

Python wheel
shell
./build.sh
Windows binary
powershell
.\build_windows.ps1
Docker image
shell
docker image build --tag zenika/ztraining2strigo .

Debugging

You can activate HTTP traces by setting the environment variable Z2S_TRACE_HTTP to 1 or True.

查看更多 ztraining2strigo 相关镜像 →
zenika/alpine-chrome logo
zenika/alpine-chrome
在极小的Alpine镜像中以无头模式运行的Chrome浏览器,适用于网页测试、自动化和内容生成等场景,体积小巧且功能丰富。
7210M+ pulls
上次更新:未知
zenika/sensei logo
zenika/sensei
Sensei是训练材料的编译器,用于生成PDF以及提供幻灯片和实验内容的Web服务,可替代zenika-formation-framework,支持通过Docker或Node.js运行。
210K+ pulls
上次更新:未知
zenika/alpine-firestore-backup logo
zenika/alpine-firestore-backup
基于Alpine Google Cloud SDK镜像的Firestore备份工具镜像,用于在谷歌云平台内自动执行Firestore数据备份。
10K+ pulls
上次更新:未知
zenika/k8s-training-tools logo
zenika/k8s-training-tools
暂无描述
10K+ pulls
上次更新:未知
zenika/k8s-training-deploy logo
zenika/k8s-training-deploy
暂无描述
10K+ pulls
上次更新:未知
zenika/oauth2l logo
zenika/oauth2l
暂无描述
10K+ pulls
上次更新:未知

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

登录仓库拉取

通过 Docker 登录认证访问私有仓库

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

Docker Compose

Docker Compose 项目配置

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

MacOS OrbStack

MacOS OrbStack 容器配置

宝塔面板

在宝塔面板一键配置镜像

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

极空间

极空间 NAS 系统配置服务

爱快路由

爱快 iKuai 路由系统配置

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

专属域名拉取

无需登录使用专属域名

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

轩辕镜像免费版与专业版有什么区别?

免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

轩辕镜像支持哪些镜像仓库?

专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
zenika/ztraining2strigo
官方博客Docker 镜像使用技巧与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
咨询镜像拉取问题请 提交工单,官方技术交流群:1072982923
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
咨询镜像拉取问题请提交工单,官方技术交流群:
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.