1
0
Fork 0
mirror of https://github.com/kou029w/yama.git synced 2025-01-31 06:18:03 +00:00
yama/compose.yml
2022-05-30 22:44:35 +09:00

23 lines
692 B
YAML

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
'