1
0
Fork 0
mirror of https://github.com/kou029w/yama.git synced 2025-01-18 16:08:11 +00:00
yama/docker-compose.yml

24 lines
705 B
YAML

version: "3"
services:
minirootfs:
image: ghcr.io/kou029w/yama/minirootfs
volumes:
- ./cache:/etc/apk/cache
- ./apkovl/etc/apk/repositories:/etc/apk/repositories
- ./apkovl/etc/apk/world:/etc/apk/world
builder:
image: ghcr.io/kou029w/yama/minirootfs
volumes:
- ./cache:/etc/apk/cache
- ./apkovl/etc/apk/repositories:/etc/apk/repositories
- ./apkovl/etc/apk/world:/etc/apk/world
- ./fstab:/etc/fstab
- ./dist/overlay.img:/overlay.img
privileged: true
command: |
sh -exc '
mkdir -p /mnt/overlay
mount -a
apk add g++ linux-headers make nodejs npm python3
npm install -g megabit nodemon
'