You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
724 B
34 lines
724 B
2 years ago
|
version: '3'
|
||
|
services:
|
||
|
|
||
|
container:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: ./Dockerfile
|
||
|
image: fedora-arm-embedded-dev
|
||
|
container_name: fedora-arm-embedded-dev
|
||
|
volumes:
|
||
|
- ${PWD}/:/workdir
|
||
|
working_dir: /workdir
|
||
|
hostname: fedora-arm-embedded-dev
|
||
|
|
||
|
stmbuild:
|
||
|
extends:
|
||
|
service: container
|
||
|
command: bash -lc 'make -j8'
|
||
|
|
||
|
stmrebuild:
|
||
|
extends:
|
||
|
service: container
|
||
|
command: bash -lc 'make clean && make -j8'
|
||
|
|
||
|
stmclean:
|
||
|
extends:
|
||
|
service: container
|
||
|
command: bash -lc 'make clean'
|
||
|
|
||
|
shell:
|
||
|
extends:
|
||
|
service: container
|
||
|
command: bash -l
|