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

23 lines
658 B
YAML
Raw Normal View History

2020-07-21 01:06:43 +09:00
services:
minirootfs:
image: ghcr.io/kou029w/yama/minirootfs
2020-07-21 01:06:43 +09:00
volumes:
- ./cache:/etc/apk/cache
- ./apkovl/etc/apk/repositories:/etc/apk/repositories
- ./apkovl/etc/apk/world:/etc/apk/world
2021-07-24 22:49:45 +09:00
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 -c '
2021-07-25 13:56:57 +09:00
mkdir -p /mnt/overlay
mount -a \
&& apk add g++ linux-headers make nodejs npm python3
2021-07-24 22:49:45 +09:00
'