mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
Extend docker_compose_test() to expose /bin on the host to the container through a volume mount and verify that /bin/busybox can be downloaded and contains the right data. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 lines
153 B
YAML
10 lines
153 B
YAML
version: '3'
|
|
services:
|
|
busybox:
|
|
image: "busybox:latest"
|
|
command: httpd -f -h /www/
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- "/bin:/www"
|