Back to Opentofu

Installing OpenTofu on Alpine Linux

website/docs/intro/install/alpine.mdx

1.11.61.2 KB
Original Source

import CodeBlock from '@theme/CodeBlock'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import ApkConvenienceScript from '!!raw-loader!./examples/alpine-convenience.sh' import ApkManualScript from '!!raw-loader!./examples/alpine-manual.sh'

Installing OpenTofu on Alpine Linux

OpenTofu is available in the Alpine Linux testing repository or as an .apk package from the GitHub releases page.

Installing using the installer

You can use the OpenTofu installer script to run the installation.

<CodeBlock language="bash">{ApkConvenienceScript}</CodeBlock>

Installing the .apk

You can also download the .apk and install it on your Alpine Linux. You can install the .apk package after downloading it:

bash
apk add --allow-untrusted tofu_*.apk

Installing from the testing repository

OpenTofu is currently available in the Alpine Testing repository and coming to Alpine stable. You can use the following commands to test Alpine installation.

<CodeBlock language="bash">{ApkManualScript}</CodeBlock>