eb63bce0f4
This changes the `docker-compose.yml` file to use the Pine64 OpenPineBuds repository's container image for the development environment, but the user has the option to build from scratch.
12 lines
237 B
YAML
12 lines
237 B
YAML
version: "3"
|
|
services:
|
|
builder:
|
|
stdin_open: true
|
|
tty: true
|
|
privileged: true
|
|
image: "ghcr.io/pine64/openpinebuds:latest-sdk"
|
|
build:
|
|
context: .
|
|
volumes:
|
|
- ./:/usr/src:Z
|
|
- /dev/:/dev/
|