diff options
author | Ivan Zorin <[email protected]> | 2023-07-02 04:32:40 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2023-07-02 11:32:40 +1000 |
commit | b524a99ff23da260e77e5d180b9b3a6701d48d87 (patch) | |
tree | 64ad754bd382ac7e3915ba0e215a7bc9738513f1 /Env.yml | |
parent | 990f42ad1a75a4de4b59950d313ab709a09959f4 (diff) | |
download | IronOS-b524a99ff23da260e77e5d180b9b3a6701d48d87.tar.gz IronOS-b524a99ff23da260e77e5d180b9b3a6701d48d87.zip |
Root directory content refactoring (#1725)
* Root directory refactoring: - move info about Bootup Logo from a sepatate README to main README; - replace separate root scripts build.sh and start_dev.sh by root Makefile; - make Scripts directory and move there: flash_ts100_linux.sh script, ci/ directory, dockerfile, LICENSE_RELEASE, and PULL_REQUEST_TEMPLATE; - reconfigure build & deploy scripts according to changes
* Scripts => scripts
* Scripts -> scripts: re-add missing renamed files
* Directories refactoring: add top-level Makefile, add scripts/deploy.sh script, move github templates from top-level dir to .github, organize files inside Development Resources
* Update scripts/deploy.sh accroding to codestyle syntax shellcheck
* Makefile: add docs-deploy target for mkdocs gh-deploy
* Rename IronOS.yml > Env.yml, update related files
* Docs configs: remove empty characters
* docs/devel: update usage of new script
Diffstat (limited to 'Env.yml')
-rw-r--r-- | Env.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Env.yml b/Env.yml new file mode 100644 index 00000000..28024651 --- /dev/null +++ b/Env.yml @@ -0,0 +1,13 @@ +version: "3"
+name: "ironos"
+services:
+ builder:
+ stdin_open: true
+ tty: true
+ build:
+ context: .
+ dockerfile: scripts/IronOS.Dockerfile
+ command: /bin/sh
+ volumes:
+ - ./scripts/ci:/build/ci:Z
+ - ./:/build/source:Z
|