Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/canardconfit/puppeteer-docker
A simple docker image to run Puppeteer under arm64 architecture.
https://github.com/canardconfit/puppeteer-docker
arm64 docker docker-image puppeteer
Last synced: 29 days ago
JSON representation
A simple docker image to run Puppeteer under arm64 architecture.
- Host: GitHub
- URL: https://github.com/canardconfit/puppeteer-docker
- Owner: CanardConfit
- License: apache-2.0
- Created: 2024-02-07T21:12:37.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-28T21:43:08.000Z (10 months ago)
- Last Synced: 2024-04-20T00:03:56.760Z (9 months ago)
- Topics: arm64, docker, docker-image, puppeteer
- Language: Dockerfile
- Homepage: https://hub.docker.com/repository/docker/canardconfit/puppeteer-docker/
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Puppeteer Docker for ARM64
![Docker Pulls](https://img.shields.io/docker/pulls/canardconfit/puppeteer-docker)
![GitHub Release](https://img.shields.io/github/v/release/CanardConfit/puppeteer-docker)
![GitHub Repo stars](https://img.shields.io/github/stars/CanardConfit/puppeteer-docker)## Introduction
This project provides a Docker image tailored for running Puppeteer on arm64 architecture, facilitating web automation tasks such as web scraping, automated testing of web pages, and screenshot capture of web pages on arm64 platforms.### Table of Contents
- [Introduction](#Introduction)
- [Installation](#Installation)
- [Usage](#Usage)
- [Features](#Features)
- [Dependencies](#Dependencies)
- [Building the Docker Image](#Building-the-Docker-Image)
- [Contributors](#Contributors)
- [License](#License)## Installation
The Docker image can be pulled from Docker Hub, here (ghcr.io) or Quay.io:
```sh
# Docker Hub
docker pull canardconfit/puppeteer-docker# ghcr.io
docker pull ghcr.io/canardconfit/puppeteer-docker# Quay.io
docker pull quay.io/canardconfit/puppeteer-docker
```## Usage
You can use this image as a base image, or directly to run something. It was designed to do both.
Check out my project [is-academia-bot](https://github.com/CanardConfit/is-academia-bot) for an example of a base image.
## Features
- Pre-configured environment for Puppeteer on arm64 architecture.
- Includes version of Puppeteer and compatible Chromium versions.## Dependencies
- Docker installed on your system.
- ARM64 architecture hardware.## Building the Docker Image
You can build the Docker image from the Dockerfile if modifications are needed or if you prefer to build it locally:
> Please note that you must be on an arm64 machine or on a docker builder under arm64!
```sh
# If your host is under arm64
docker build -t your_custom_name/puppeteer-docker .# If you are on amd64 for example, and you want to build
docker buildx build -t your_custom_name/puppeteer-docker:latest --platform linux/arm64 -- .
```## Contributors
To contribute to this project, please fork the repository and submit a pull request.
## License
[Apache 2.0 License](./LICENSE)