No description
Find a file
askiiart bff552d4f7
Some checks failed
continuous-integration/drone Build is failing
i have no idea what the issue is but i think it's drone weirdness so i'm making a commit
maybe it'll work after this
2024-09-26 14:14:02 -05:00
.drone.yml i have no idea what the issue is but i think it's drone weirdness so i'm making a commit 2024-09-26 14:14:02 -05:00
build-and-push.sh Initial commit 2023-08-27 20:31:51 -05:00
Dockerfile Undo that because it somehow made the image bigger!? 2023-10-02 10:30:09 -05:00
README.md Add drone config 2023-09-01 20:44:04 -05:00
run.sh Initial commit 2023-08-27 20:31:51 -05:00

docker-createrepo_c

Build Status

createrepo_c in a Docker container

Running

Example docker run:

docker run -d -e DELAY=5 -v /path/to/repo:/repo docker.askiiart.net/askiiart/createrepo_c

Example docker-compose.yml:

version: '3.7'
services:
  hugo:
    image: docker.askiiart.net/askiiart/createrepo_c
    environment:
      - DELAY=5
    volumes:
      - /path/to/repo:/repo

Building

  1. Run docker build .