Initial commit
This commit is contained in:
29
toolchain/docker-compose.yml
Normal file
29
toolchain/docker-compose.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
version: "3.5"
|
||||
|
||||
services:
|
||||
make:
|
||||
image: thomasloven/mittos-build
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.build
|
||||
volumes:
|
||||
- ..:/opt
|
||||
command: make
|
||||
|
||||
emul:
|
||||
image: thomasloven/mittos-run
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.run
|
||||
volumes:
|
||||
- ..:/opt
|
||||
command: qemu-system-x86_64 -s -S -cdrom /opt/dist/mittos.iso -curses
|
||||
|
||||
dbg:
|
||||
image: thomasloven/mittos-run
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.run
|
||||
volumes:
|
||||
- ..:/opt
|
||||
command: gdb -q -x /opt/toolchain/gdbinit
|
||||
Reference in New Issue
Block a user