Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hellodk34/squoosh
A https://github.com/GoogleChromeLabs/squoosh docker image. Support amd64, arm64 and arm v7 arch. Dockerfile open source at https://github.com/hellodk34/squoosh .
https://github.com/hellodk34/squoosh
Last synced: 16 days ago
JSON representation
A https://github.com/GoogleChromeLabs/squoosh docker image. Support amd64, arm64 and arm v7 arch. Dockerfile open source at https://github.com/hellodk34/squoosh .
- Host: GitHub
- URL: https://github.com/hellodk34/squoosh
- Owner: hellodk34
- License: mit
- Created: 2022-07-20T04:28:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-07T06:10:53.000Z (over 1 year ago)
- Last Synced: 2024-08-01T08:11:11.055Z (3 months ago)
- Language: Dockerfile
- Size: 156 KB
- Stars: 31
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# squoosh
A https://github.com/GoogleChromeLabs/squoosh docker image. Support amd64, arm64 and arm v7 arch. Dockerfile open source at https://github.com/hellodk34/squoosh . If you appreciate for my work, you can leave a star on this GitHub repo, thank you as the same.
Docker Hub address: https://hub.docker.com/r/dko0/squoosh
## Other description
using docker buildx built
```
# docker buildx build -f ./Dockerfile -t NAMESPACE/squoosh:1.12.0 --platform=linux/arm64,linux/amd64,linux/arm/v7 .
```My repo not contained all the source code, I just edited the package.json file and built this docker image. To review the source code, please step to [GoogleChromeLabs/squoosh](https://github.com/GoogleChromeLabs/squoosh) . Thanks for your using.
## Usage
### just docker run
```
# docker run -d --name squoosh \
--restart unless-stopped \
-p 7701:8080 \
dko0/squoosh:1.12.0
```then, visit http://YOUR_IP:7701 and enjoy it!
### docker-compose
```
cat > squoosh-compose.yml <