Skip to content

Commit

Permalink
Documentation
Browse files Browse the repository at this point in the history
Fixed cheat sheet for multi-arch building
  • Loading branch information
Salvoxia committed Feb 4, 2023
1 parent b01e395 commit e9e8334
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ Unlike the image this is image is based on, it is not tested extensively with di

#### Cheat Sheet
* __Build:__ docker ```build -t salvoxia/openvpn-tap:latest .```
* __Build Multi-Arch (buildx)__ ```docker build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t salvoxia/openvpn-tap:latest .```
* __Build Multi-Arch (buildx)__
```bash
docker buildx create --name multi-platform-builder --platform linux/arm/v7,linux/arm64/v8,linux/amd64
docker buildx build --builder multi-platform-builder -t salvoxia/openvpn-tap:latest .
```

#### Environment Variables
| Environment varible | Description |
Expand Down

0 comments on commit e9e8334

Please sign in to comment.