diff options
author | Ben V. Brown <[email protected]> | 2019-12-23 18:36:10 +1100 |
---|---|---|
committer | Ben V. Brown <[email protected]> | 2019-12-23 18:36:10 +1100 |
commit | cc79fcb4cff30be21f1c3512e6571587ae426e9c (patch) | |
tree | 3c58996c6d7d763582e6065fffa06f4cb9f8d545 /docker-compose.yml | |
parent | 9e7355adab92f8f7a86fe410e350584cf3b05f4f (diff) | |
download | IronOS-cc79fcb4cff30be21f1c3512e6571587ae426e9c.tar.gz IronOS-cc79fcb4cff30be21f1c3512e6571587ae426e9c.zip |
Rough pass at builder
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..e147e5ec --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3'
+services:
+ builder:
+ stdin_open: true
+ tty: true
+ build:
+ context: .
+ command: /bin/bash
+ volumes:
+ - ./ci:/build/ci
+ - ./:/build/source
|