17 lines
343 B
YAML
17 lines
343 B
YAML
# for testing and reference only
|
|
services:
|
|
cloud:
|
|
build: .
|
|
volumes:
|
|
- "./data:/image"
|
|
- "./test.sh:/test.sh"
|
|
devices:
|
|
- "/dev/kvm:/dev/kvm"
|
|
- "/dev/net/tun:/dev/net/tun"
|
|
entrypoint: ["/sbin/tini", "/test.sh"]
|
|
cap_add:
|
|
- CAP_SYS_ADMIN
|
|
- CAP_NET_ADMIN
|
|
tty: true
|
|
stdin_open: true
|