mirror of
https://github.com/Team-Resurgent/Modxo.git
synced 2026-08-15 11:18:18 -07:00
26 lines
622 B
YAML
26 lines
622 B
YAML
services:
|
|
builder:
|
|
profiles: [ "builder" ]
|
|
image: modxo-builder:latest
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
working_dir: /home/dev
|
|
volumes:
|
|
- .:/home/dev
|
|
environment:
|
|
- MODXO_PINOUT
|
|
- CLEAN
|
|
- BUILD_TYPE
|
|
command: [ "/home/dev/tools/dockerbuild.sh" ]
|
|
bios2uf2:
|
|
profiles: [ "bios2uf2" ]
|
|
image: modxo-builder:latest
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
working_dir: /home/dev
|
|
volumes:
|
|
- .:/home/dev
|
|
command: [ "python", "tools/flashbin_to_uf2.py", "--output-dir", "/home/dev/out", "bios.bin", "bios/*.bin" ]
|