mirror of
https://github.com/ldericher/autodoc.git
synced 2025-12-06 15:43:01 +00:00
Merge branch 'release/0.5.0'
This commit is contained in:
commit
c2544d8c86
4 changed files with 21 additions and 5 deletions
16
.drone.yml
Normal file
16
.drone.yml
Normal 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
|
||||
|
|
@ -1,5 +1,7 @@
|
|||
# autodoc
|
||||
|
||||
[](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.
|
||||
|
||||
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.
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
version: "2"
|
||||
|
||||
volumes:
|
||||
phyLinux-home:
|
||||
|
||||
services:
|
||||
autodoc:
|
||||
restart: "no"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
FROM ldericher/pandocker:latest
|
||||
|
||||
RUN apt-get update && apt-get -y install \
|
||||
RUN set -ex; \
|
||||
apt-get update && apt-get -y install \
|
||||
inotify-tools \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
; rm -rf /var/lib/apt/lists/*;
|
||||
|
||||
COPY usr /usr
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue