погнали
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Simple_Not 2023-07-15 16:44:27 +10:00
commit cea58404dd
7 changed files with 68 additions and 0 deletions

23
.drone.yml Normal file
View 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
View File

@ -0,0 +1,5 @@
asdf
https://rust-lang.github.io/mdBook/guide/creating.html

6
book/book.toml Normal file
View File

@ -0,0 +1,6 @@
[book]
authors = []
language = "ru"
multilingual = false
src = "src"
title = "Nihil Unbound"

10
book/src/SUMMARY.md Normal file
View 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
View File

@ -0,0 +1,4 @@
# Тут начинается текст
фыва

20
docker-compose.yml Normal file
View 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'