mirror of
https://github.com/oldnick85/tor_yggdrasil_docker.git
synced 2025-11-29 03:13:44 +01:00
9 lines
243 B
Bash
9 lines
243 B
Bash
#!/bin/bash
|
|
TAG_VERSION=$(git describe --tags || echo "unknown")
|
|
docker build \
|
|
--build-arg UBUNTU_VERSION=24.04 \
|
|
--build-arg YGGDRASIL_VERSION=v0.5.11 \
|
|
--tag tor_yggdrasil:${TAG_VERSION} \
|
|
--tag tor_yggdrasil:latest \
|
|
.
|