29 lines
572 B
YAML
29 lines
572 B
YAML
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 |