This commit is contained in:
commit
cea58404dd
23
.drone.yml
Normal file
23
.drone.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: exec
|
||||||
|
name: default
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
|
||||||
|
clone:
|
||||||
|
# убрано так как сейчас не тестим ничего предварительно а сразу тянем в директорию
|
||||||
|
disable: true
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: pull into the folduh
|
||||||
|
commands:
|
||||||
|
- cd /usr/share/$DRONE_REPO_NAME
|
||||||
|
- git pull origin master
|
||||||
|
- name: docker-compose-rebuild
|
||||||
|
commands:
|
||||||
|
- cd /usr/share/$DRONE_REPO_NAME
|
||||||
|
- docker compose up -d --build
|
5
README.md
Normal file
5
README.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
asdf
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
https://rust-lang.github.io/mdBook/guide/creating.html
|
6
book/book.toml
Normal file
6
book/book.toml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[book]
|
||||||
|
authors = []
|
||||||
|
language = "ru"
|
||||||
|
multilingual = false
|
||||||
|
src = "src"
|
||||||
|
title = "Nihil Unbound"
|
10
book/src/SUMMARY.md
Normal file
10
book/src/SUMMARY.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Summary
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[Introduction](README.md)
|
||||||
|
|
||||||
|
![оригинал](orig/ray-brassier-nihil-unbound-enlightenment-and-extinction.pdf)
|
||||||
|
|
||||||
|
|
||||||
|
- [Chapter 1](./chapter_1.md)
|
4
book/src/chapter_1.md
Normal file
4
book/src/chapter_1.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Тут начинается текст
|
||||||
|
|
||||||
|
|
||||||
|
фыва
|
Binary file not shown.
20
docker-compose.yml
Normal file
20
docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
|
||||||
|
services:
|
||||||
|
mdbook:
|
||||||
|
container_name: test-mdbook
|
||||||
|
# https://hub.docker.com/r/peaceiris/mdbook/tags
|
||||||
|
image: peaceiris/mdbook:0.4.31-rust
|
||||||
|
# stdin_open: true
|
||||||
|
# tty: true
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:5100:3000"
|
||||||
|
#- 5101:3001
|
||||||
|
volumes:
|
||||||
|
- ./book:/book
|
||||||
|
command:
|
||||||
|
# - init
|
||||||
|
# - echo "y"
|
||||||
|
- serve
|
||||||
|
- --hostname
|
||||||
|
- '0.0.0.0'
|
Loading…
Reference in New Issue
Block a user