init
This commit is contained in:
commit
86fa82691a
|
@ -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
|
|
@ -0,0 +1,6 @@
|
|||
FROM nginx:alpine3.17-slim
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
|
||||
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
@ -0,0 +1,3 @@
|
|||
[book]
|
||||
title = "Sandbox Documentation"
|
||||
language = "en"
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
# Document not found (404)
|
||||
|
||||
This URL is invalid, sorry. Try the search instead!
|
|
@ -0,0 +1,3 @@
|
|||
# Introduction
|
||||
|
||||
Public documentation for **sandbox**.
|
|
@ -0,0 +1,7 @@
|
|||
# Summary
|
||||
|
||||
[Introduction](README.md)
|
||||
|
||||
# Architecture
|
||||
|
||||
- [Overview](architecture/overview.md)
|
Loading…
Reference in New Issue