https://github.com/andstor/docker2apptainer
https://github.com/andstor/docker2apptainer
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andstor/docker2apptainer
- Owner: andstor
- Created: 2024-11-01T03:18:50.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-01-22T00:41:59.000Z (6 months ago)
- Last Synced: 2025-02-24T19:41:29.326Z (5 months ago)
- Language: JavaScript
- Size: 896 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker2Apptainer action
This action converts a Docker container into an Apptainer.
## Inputs
### `docker-image`
**Required** The Docker image to convert.
### `save-path`
**Required** The path to save the Apptainer sif image file.
## Outputs
### `image`
The path to the Apptainer sif image file.
## Example usage
```yaml
uses: andstor/docker2apptainer
with:
docker-image: 'docker://ubuntu:latest'
save-path: 'ubuntu.sif'
```