SkillAgentSearch skills...

Config

config files, Dockerfiles, Taskfiles for Developers.

Install / Use

/learn @better-sre/Config
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

config

简体中文 | English

  • Contains a large number of installation/deployment scripts that developers need to use in their daily work.
  • Automatically supports cross-platform installation.
  • Thanks to the go-task project.

included:

  • docker-compose
  • dockerfile
  • Taskfile

How to use

way1: by git clone

  • git clone, with --depth=1: 只克隆最新的一个 commit

# run:
task dl

# or
tasks:
  dl:
    cmds:
      - mkdir -p .task/
      - |
        git clone --depth=1 \
          https://github.com/better-sre/config.git \
          ./.task/sre
    ignore_error: true

  • add to your Taskfile.yml:
includes:
  x:
    taskfile: .task/sre/ # by git clone
    dir: .
    optional: true


way2: by rsync

  • rsync mirror
# run
task rsync

# or
tasks:
  # by rsync
  rsync:
    aliases: ["mirror", "mr"]
    cmds:
      - mkdir -p .task/
      - |
        rsync \
          --exclude=".git" \
          --exclude=".task" \
          --exclude=".github" \
          --exclude=".vscode" \
          --exclude="tmp" \
          --exclude="./*.*" \
          --include="Taskfile.yml" \
          -av \
          --delete \
          . ./.task/config  # TODO: please set your own source path to the config dir!!!
    dir: .


  • add to your Taskfile.yml:
includes:
  x:
    taskfile: .task/config/ # by rsync
    dir: .
    optional: true

Manual

Contents

Docker-compose

Docker + Dockerfile

Python + Ubuntu + Dockerfile


# build ubuntu + python:3.12
task df:py:b312

# test container:
task df:py:t312

View on GitHub
GitHub Stars31
CategoryDevelopment
Updated3mo ago
Forks3

Languages

Dockerfile

Security Score

92/100

Audited on Dec 18, 2025

No findings