https://github.com/bednar/frame-it-cli
This Docker image is designed to simplify the use of the FrameIt command in Fastlane, which automates the process of adding device frames to screenshots.
https://github.com/bednar/frame-it-cli
fastlane frameit screenshots
Last synced: 4 months ago
JSON representation
This Docker image is designed to simplify the use of the FrameIt command in Fastlane, which automates the process of adding device frames to screenshots.
- Host: GitHub
- URL: https://github.com/bednar/frame-it-cli
- Owner: bednar
- License: mit
- Created: 2024-05-14T18:00:03.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2026-01-21T06:09:38.000Z (4 months ago)
- Last Synced: 2026-01-21T18:15:42.688Z (4 months ago)
- Topics: fastlane, frameit, screenshots
- Language: Dockerfile
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FrameIt CLI Docker Image
[](https://hub.docker.com/r/bednar/frame-it-cli)
This Docker image is designed to simplify the use of the FrameIt command in [Fastlane](https://fastlane.tools), which automates the process of adding device frames to screenshots.
## Prerequisites
Ensure you have Docker installed on your system to use this image. Download Docker from [Docker's official site](https://www.docker.com/get-started).
## Getting the Docker Image
The Docker image is hosted on Docker Hub and can be pulled using the following command:
```bash
docker pull bednar/frame-it-cli
```
## Building the Docker Image Locally
If you prefer to build the image locally, clone this repository and navigate to the directory containing the Dockerfile. Run the following command:
```bash
docker build -t bednar/frame-it-cli .
```
## Usage
With the Docker image, you can execute various commands using Fastlane's [FrameIt](https://docs.fastlane.tools/actions/frameit/#frameit). Here are some example commands:
### Adding Frames to Screenshots
To add device frames to your screenshots, use the following command in directory containing your screenshots:
```bash
docker run -it --rm -v $(pwd):/app/Fastlane bednar/frame-it-cli frameit
```
### Specifying a Screenshots Directory
You can specify the directory where your screenshots are located:
```bash
docker run -it --rm -v $(pwd):/app bednar/frame-it-cli frameit --path path/to/your/screenshots
```
## Contributing
We welcome contributions from the community. Whether it's improving the Dockerfile, adding more examples, or reporting issues, your input is appreciated.
## License
This project is released under the MIT License. See the [`LICENSE`](https://github.com/bednar/frame-it-cli/blob/main/LICENSE) file in the repository for more details.
## Contact
If you have any questions or need help, please open an issue in this GitHub repository for support and inquiries. Follow this link to create a new issue: [Open an Issue](https://github.com/bednar/frame-it-cli/issues/new).