Merge branch 'release/0.5.0'

This commit is contained in:
Jörn-Michael Miehe 2021-09-23 00:40:28 +02:00
commit f3421123af
4 changed files with 21 additions and 5 deletions

16
.drone.yml Normal file
View file

@ -0,0 +1,16 @@
---
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
repo: ldericher/autodoc
context: src
dockerfile: src/Dockerfile
auto_tag: true
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD

View file

@ -1,5 +1,7 @@
# autodoc # autodoc
[![Build Status](https://github.drone.yavook.de/api/badges/ldericher/autodoc/status.svg)](https://github.drone.yavook.de/ldericher/autodoc)
[`autodoc`](https://github.com/ldericher/autodoc) is a simple [CI](https://en.wikipedia.org/wiki/Continuous_integration) system optimized for document creation. [`autodoc`](https://github.com/ldericher/autodoc) is a simple [CI](https://en.wikipedia.org/wiki/Continuous_integration) system optimized for document creation.
In general, any file-sharing solution -- preferably on top of `docker-compose` -- can be made into an automatic document distribution system by adding an `autodoc` instance. In general, any file-sharing solution -- preferably on top of `docker-compose` -- can be made into an automatic document distribution system by adding an `autodoc` instance.

View file

@ -1,8 +1,5 @@
version: "2" version: "2"
volumes:
phyLinux-home:
services: services:
autodoc: autodoc:
restart: "no" restart: "no"

View file

@ -1,8 +1,9 @@
FROM ldericher/pandocker:latest FROM ldericher/pandocker:latest
RUN apt-get update && apt-get -y install \ RUN set -ex; \
apt-get update && apt-get -y install \
inotify-tools \ inotify-tools \
&& rm -rf /var/lib/apt/lists/* ; rm -rf /var/lib/apt/lists/*;
COPY usr /usr COPY usr /usr