Compare commits
No commits in common. "01063534ec7a9e7f5d57f31b04f2f848a9811fe3" and "780ab23310d8421c771b66787998e07186de4b15" have entirely different histories.
01063534ec
...
780ab23310
|
@ -36,7 +36,7 @@ steps:
|
||||||
registry: code.birch-tree.net
|
registry: code.birch-tree.net
|
||||||
repo: code.birch-tree.net/dorian/mirror-server
|
repo: code.birch-tree.net/dorian/mirror-server
|
||||||
tags:
|
tags:
|
||||||
- 0.3.1
|
- 0.3.0
|
||||||
- latest
|
- latest
|
||||||
cache_from:
|
cache_from:
|
||||||
- code.birch-tree.net/dorian/mirror-server:latest
|
- code.birch-tree.net/dorian/mirror-server:latest
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mirror-server"
|
name = "mirror-server"
|
||||||
version = "0.3.1"
|
version = "0.3.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Dorian Pula <dorian.pula@amber-penguin-software.ca>"]
|
authors = ["Dorian Pula <dorian.pula@amber-penguin-software.ca>"]
|
||||||
description = "A simple server for mirror HTTP requests for testing."
|
description = "A simple server for mirror HTTP requests for testing."
|
||||||
|
|
|
@ -20,7 +20,6 @@ RUN cargo build \
|
||||||
|
|
||||||
# Bring in the source
|
# Bring in the source
|
||||||
COPY ["./src/*", "./src/"]
|
COPY ["./src/*", "./src/"]
|
||||||
COPY ["README.md", "LICENSE", "."]
|
|
||||||
|
|
||||||
# Build the example API.
|
# Build the example API.
|
||||||
RUN cargo build --release
|
RUN cargo build --release
|
||||||
|
|
|
@ -36,7 +36,7 @@ $ docker run -p 8080:8080 code.birch-tree.net/dorian/mirror-server:latest
|
||||||
Download the DEB file, and install it:
|
Download the DEB file, and install it:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
VERSION=0.3.1
|
VERSION=0.3.0
|
||||||
REPO_URL=https://code.birch-tree.net/api/packages/dorian/generic/mirror-server/
|
REPO_URL=https://code.birch-tree.net/api/packages/dorian/generic/mirror-server/
|
||||||
curl "${REPO_URL}/${VERSION}/mirror-server_${VERSION}_amd64.deb"
|
curl "${REPO_URL}/${VERSION}/mirror-server_${VERSION}_amd64.deb"
|
||||||
sudo dpkg -i "mirror-server-${VERSION}_amd64.deb"
|
sudo dpkg -i "mirror-server-${VERSION}_amd64.deb"
|
||||||
|
|
Loading…
Reference in New Issue