Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iam-medvedev/browserless-arm
https://github.com/iam-medvedev/browserless-arm
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/iam-medvedev/browserless-arm
- Owner: iam-medvedev
- Created: 2024-06-20T17:59:42.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-21T07:38:58.000Z (5 months ago)
- Last Synced: 2024-09-16T00:31:16.760Z (about 2 months ago)
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ARMv7 Build for Browserless
> [!WARNING]
> Work in progress, not ready to use.This repository contains a GitHub Action workflow designed to build and push
a Docker image of the [browserless](https://github.com/browserless/browserless)
project for the ARMv7 architecture.The image is available on Docker Hub:
- [iammedvedev/browserless-arm-base:latest](https://hub.docker.com/r/iammedvedev/browserless-arm-base)
- [iammedvedev/browserless-arm-firefox:latest](https://hub.docker.com/r/iammedvedev/browserless-arm-firefox)## Usage
### Docker
You can pull and run the ARMv7 browserless image using Docker with the following command:
```sh
docker run -p 3000:3000 iammedvedev/browserless-arm-firefox:latest
```### Docker Compose
You can also use Docker Compose to run the ARMv7 browserless container.
Create a `docker-compose.yml` file with the following content:```yml
version: "3"
services:
browserless:
image: iammedvedev/browserless-arm-firefox:latest
ports:
- "3000:3000"
```