You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recommend using the specific version tag for production environments to ensure stability, while the less specific tags can be used for development or when you want to automatically get updates.
37
50
38
51
## Docker Image Security
@@ -42,20 +55,26 @@ This image includes supply chain security features:
42
55
### Attestations
43
56
44
57
The image build process includes:
45
-
- Docker provenance attestation
58
+
- Docker provenance attestation (for both Docker Hub and GitHub Container Registry images)
46
59
- Software Bill of Materials (SBOM)
47
60
48
61
## Usage
49
62
50
63
```bash
51
-
# Pull a specific version
64
+
# Pull a specific version from Docker Hub
52
65
docker pull evandarwin/lua:5.4.7
53
66
54
67
# Or use the major.minor version
55
68
docker pull evandarwin/lua:5.4
56
69
70
+
# From GitHub Container Registry
71
+
docker pull ghcr.io/evandarwin/lua:5.4.7
72
+
57
73
# Run a Lua command
58
74
docker run -it evandarwin/lua:5.4.7 lua -e "print('Hello from Lua!')"
75
+
76
+
# Or use the GitHub Container Registry version
77
+
docker run -it ghcr.io/evandarwin/lua:5.4.7 lua -e "print('Hello from Lua!')"
0 commit comments