This commit is contained in:
maltegrosse 2023-05-31 15:16:27 +09:00
commit 86fa82691a
9 changed files with 63 additions and 0 deletions

16
.woodpecker.yaml Normal file
View File

@ -0,0 +1,16 @@
pipeline:
create-book:
image: peaceiris/mdbook:v0.4.30
commands:
- echo "Creating book................. "
- ls
- mdbook build
publish-container:
image: woodpeckerci/plugin-docker-buildx:2.1.0
secrets: [ docker_username, docker_password ]
group: docker
settings:
registry: https://git.sandbox.iuk.hdm-stuttgart.de
repo: git.sandbox.iuk.hdm-stuttgart.de/grosse/sandbox-docs-public
dockerfile: Dockerfile
tags: latest

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM nginx:alpine3.17-slim
WORKDIR /app
COPY . .
COPY ./nginx.conf /etc/nginx/nginx.conf

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Public SANDBOX Documentation
## Lorem Ipsum

3
book.toml Normal file
View File

@ -0,0 +1,3 @@
[book]
title = "Sandbox Documentation"
language = "en"

22
nginx.conf Normal file
View File

@ -0,0 +1,22 @@
events {
worker_connections 1024;
}
http {
include mime.types;
sendfile on;
server {
listen 8080;
listen [::]:8080;
resolver 127.0.0.11;
autoindex off;
server_name _;
server_tokens off;
root /app/static;
gzip_static on;
}
}

3
src/404.md Normal file
View File

@ -0,0 +1,3 @@
# Document not found (404)
This URL is invalid, sorry. Try the search instead!

3
src/README.md Normal file
View File

@ -0,0 +1,3 @@
# Introduction
Public documentation for **sandbox**.

7
src/SUMMARY.md Normal file
View File

@ -0,0 +1,7 @@
# Summary
[Introduction](README.md)
# Architecture
- [Overview](architecture/overview.md)

View File