blob: 73a29a49ac59c92e7e82a15ecddc69da8742fe5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
SUMMARY = "Autostart test container"
DESCRIPTION = "A container for testing autostart functionality. \
Runs a simple service that logs timestamps continuously."
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
# Inherit from container-app-base for standard container setup
require recipes-extended/images/container-app-base.bb
# The test service that runs continuously
CONTAINER_APP = "autostart-test"
CONTAINER_APP_CMD = "/usr/bin/autostart-test"
# To test autostart, add to local.conf:
# BUNDLED_CONTAINERS = "autostart-test-container-latest-oci:docker:autostart"
#
# Then verify on target:
# docker ps # Should show container running
# docker logs autostart-test-container # Should show timestamp logs
#
# For Podman:
# BUNDLED_CONTAINERS = "autostart-test-container-latest-oci:podman:autostart"
# podman ps
# podman logs autostart-test-container
|