Docker Images for alpine. (amd64,arm64,ppc64le,riscv64,s390x)
100K+
Docker Image packaging for rocky. (amd64, arm64v8, riscv64, ppc64le, s390x)
To help you get started creating a container from this image you can either use docker-compose or the docker cli.
docker run -d \
--name=rocky \
-e TZ=Asia/Shanghai \
--restart unless-stopped \
snowdreamtech/rocky:latest
docker run -d \
--name=rocky \
-e TZ=Asia/Shanghai \
-v /path/to/data:/path/to/data \
--restart unless-stopped \
snowdreamtech/rocky:latest
version: "3"
services:
rocky:
image: snowdreamtech/rocky:latest
container_name: rocky
environment:
- TZ=Asia/Shanghai
restart: unless-stopped
version: "3"
services:
rocky:
image: snowdreamtech/rocky:latest
container_name: rocky
environment:
- TZ=Asia/Shanghai
volumes:
- /path/to/data:/path/to/data
restart: unless-stopped
docker buildx create --use --name build --node build --driver-opt network=host
docker buildx build -t snowdreamtech/rocky --platform=linux/386,linux/amd64,linux/arm/v5,linux/arm/v7,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x . --push
MIT
Content type
Image
Digest
sha256:da753ece1…
Size
100.2 MB
Last updated
6 days ago
docker pull snowdreamtech/debian