Simple containers, mainly intended for use with Woodpecker CI.
Go to file
Kaan Barmore-Genç 3bde2a0743
All checks were successful
ci/woodpecker/push/rsync Pipeline was successful
ci/woodpecker/push/rust Pipeline was successful
ci/woodpecker/push/tor Pipeline was successful
Add tor service
2023-03-05 15:04:45 -05:00
.woodpecker Add tor service 2023-03-05 15:04:45 -05:00
rsync Add rsync 2022-11-19 11:59:15 -05:00
rust Add binstall & many needed packages 2022-11-25 17:54:38 -05:00
tor Add tor service 2023-03-05 15:04:45 -05:00
Readme.md Add tor service 2023-03-05 15:04:45 -05:00

Containers

This repository contains various docker images that I found useful. These are typically not very complex, usually not more than an alpine image with a few packages installed.

Right now I'm using these primarily in my Woodpecker CI steps, but they are regular docker images and can be used anywhere.

These containers are automatically updated every week, so they should stay fresh!

rsync

Docker Pulls Docker Image Size (tag)

Gives you access to rsync, ssh, and scp commands.

rust

Docker Pulls Docker Image Size (tag)

Rust stable toolchain, with rustup, binstall, fmt, clippy, llvm-cov, llvm-tools, and audit.

This is a pretty heavy package as it contains a lot of libraries and other things I found useful for my work.

tor

Docker Pulls Docker Image Size (tag)

An alpine container with Tor installed. Set up so you can easily mount your own config directory.

Check the tor folder in this repository for an example of how to run it.


Adding a new container

  1. Add a new folder, named after the container.
  2. Create a Dockerfile inside of that folder, and fill out the dockerfile.
  3. Go to Dockerhub, and create a repository for this new container.
  4. Under .woodpecker/, copy an existing pipeline. Name the copy after the container.
  5. Update the new pipeline:
    • Update the repo: ... to match the new repo you created
    • Point dockerfile: ... to the new dockerfile
    • Update when: ... condition so it's built when the correct folder is updated