mirror of
https://github.com/docker/docs.git
synced 2026-04-01 16:58:54 +07:00
13 lines
171 B
Bash
13 lines
171 B
Bash
#!/bin/bash
|
|
|
|
PLATFORM=`uname -s | tr '[:upper:]' '[:lower:]'`
|
|
ARCH=`uname -m`
|
|
|
|
if [ "$ARCH" = "x86_64" ]; then
|
|
ARCH="amd64"
|
|
else
|
|
ARCH="386"
|
|
fi
|
|
|
|
DRIVER=${DRIVER:-}
|