• 0.1.3
    All checks were successful
    Build Docker Image / Explore-Gitea-Actions (push) Successful in 10s
    Stable

    martin released this 2025-04-03 11:16:33 +08:00 | 16 commits to main since this release

    1. [+] 补充 k8s helm
    2. [*] 拆分 README
    3. [*] 优化 k8s 部署脚本
    4. [*] fix debian-security 源
    5. [-] 移除 haproxy
    Downloads
  • 0.1.2
    All checks were successful
    Build Docker Image / Explore-Gitea-Actions (push) Successful in 10s
    Stable

    martin released this 2025-01-15 19:54:09 +08:00 | 54 commits to main since this release

    1. 优化 git proxy
    2. apt 增加 src 源
    3. 历史版本 docker 只更新不重启
    Downloads
  • 0.1.1(稳定版)
    All checks were successful
    Build Docker Image / Explore-Gitea-Actions (push) Successful in 12s
    Stable

    martin released this 2025-01-14 09:22:24 +08:00 | 57 commits to main since this release

    安装

    # 初始化全部
    curl -sSL https://git.martin98.com/MartinFarm/init/raw/branch/main/init-all.sh | bash
    
    # apt + ntp 
    curl -sSL https://git.martin98.com/MartinFarm/init/raw/branch/main/init-apt.sh | bash
    # docker-ce
    curl -sSL https://git.martin98.com/MartinFarm/init/raw/branch/main/init-docker.sh | bash
    # npm
    curl -sSL https://git.martin98.com/MartinFarm/init/raw/branch/main/init-npm.sh | bash
    # pip
    curl -sSL https://git.martin98.com/MartinFarm/init/raw/branch/main/init-pip.sh | bash
    # git
    curl -sSL https://git.martin98.com/MartinFarm/init/raw/branch/main/init-git.sh | bash
    

    Python 镜像源配置测试

    pip config set global.index-url https://mirrors.martin98.com/repository/pypi-group/simple
    

    NPM

    npm config set registry https://mirrors.martin98.com/repository/npm-group/
    

    dockerfile

    COPY --from=docker.martin98.com/martin_farm/init:latest /scripts /scripts
    
    RUN --mount=type=cache,target=/var/cache/apt \
        --mount=type=cache,target=/var/lib/apt \
        bash /scripts/init-apt.sh
    

    APT 源说明

    • ${release}
    • ${release}-updates
    • ${release}-backports
    Downloads
  • 0.1.0 Stable

    martin released this 2025-01-05 23:21:26 +08:00 | 71 commits to main since this release

    初始化 ubuntu / debian,安装 docker-ce
    # apt + ntp 
    curl -sSL https://git.martin98.com/MartinFarm/init/raw/branch/main/init-apt.sh | bash
    # docker-ce
    curl -sSL https://git.martin98.com/MartinFarm/init/raw/branch/main/init-docker.sh | bash
    # 初始化全部
    curl -sSL https://git.martin98.com/MartinFarm/init/raw/branch/main/init-all.sh | bash
    

    Python 镜像源配置测试

    pip config set global.index-url https://mirrors.martin98.com/repository/pypi-group/simple
    

    NPM源

    npm config set registry https://mirrors.martin98.com/repository/npm-group/
    
    Downloads