Closed MasterZhang007 closed 6 months ago
Ah, this is a YAML vs Shell quoting issue. You'll want to change:
- QEMU_BOOT='order=d'
- QEMU_PORTS='2375 2376'
to:
- QEMU_BOOT=order=d
- QEMU_PORTS=2375 2376
or:
- 'QEMU_BOOT=order=d'
- 'QEMU_PORTS=2375 2376'
or swap the entire environment:
block to a map so they could become:
QEMU_BOOT: 'order=d'
QEMU_PORTS: '2375 2376'
@tianon Thank you so much. It worked.
I tried to start the container but all failed.
Here's my docker-compose.yml:
docker logs: