mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
* Test docker prod build in CI * Need uses * Set build-args * Split builds * Fix build-args format * wtf * hmmm * Jeebus * build version based on drafted release * Build multi-platform images * Only build for supported platforms * Use newer OTP fingers crossed * Use OTP 24 for arm64 * Finalize test build of Docker image * Update comment * Bump to OTP 25.1 * Use proper ver * D'oh proper sha * Use OTP 24 and install python for node build * Use new Docker base * Use python3 * Use newly-built base images with other platform support * Don't build for ppc64le and s390x * Build only for amd64/arm64 * Don't rebuild on publish; simply copy * See where the image is being pushed * Remove echo * Add docker updates * Match platforms from base image * Use docker-compose over docker compose * Use our own base * we need python3 * use consistent service name * trim trailing slash from external_url * Build for latest tag in staging
9 lines
206 B
Bash
Executable File
9 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ip link add dev wg-firezone type wireguard
|
|
ip address replace dev wg-firezone 10.3.2.1/24
|
|
ip -6 address replace dev wg-firezone fd00::3:2:1/120
|
|
ip link set mtu 1280 up dev wg-firezone
|
|
|
|
mix start
|