mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
22 lines
494 B
YAML
22 lines
494 B
YAML
version: '3.7'
|
|
services:
|
|
|
|
# usage:
|
|
# If desired, adjust "DEFAULT_MAKEPKG_ARGS" in "run.sh"
|
|
# Build the docker container with:
|
|
# sudo docker-compose build --pull
|
|
# Then build a package with:
|
|
# sudo docker-compose run --rm makepkg <packageName> [<makepkgArguemnts>]
|
|
makepkg:
|
|
build: .
|
|
|
|
command: ["de-p1st-font"]
|
|
|
|
volumes:
|
|
- ../pkg:/pkg:ro
|
|
- ./out:/out
|
|
|
|
# interactive
|
|
stdin_open: true # docker run -i
|
|
tty: true # docker run -t
|