Skip to content

Commit 0bd0c9d

Browse files
committed
migrate docker to new repo
1 parent 9fd6a20 commit 0bd0c9d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile.alpine

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ RUN apk update && \
1515
# update certs
1616
update-ca-certificates && \
1717
# get latest stable version
18-
LATEST_VERSION=$(curl https://api.github.com/repos/sokil/statsd-http-proxy/releases/latest 2>/dev/null | grep tag_name | awk -F'"' '{print $4}') && \
18+
LATEST_VERSION=$(curl https://api.github.com/repos/GoMetric/statsd-http-proxy/releases/latest 2>/dev/null | grep tag_name | awk -F'"' '{print $4}') && \
1919
VERSION=${VERSION:-$LATEST_VERSION} && \
2020
# download source
21-
wget https://github.com/sokil/statsd-http-proxy/archive/$VERSION.tar.gz && \
21+
wget https://github.com/GoMetric/statsd-http-proxy/archive/$VERSION.tar.gz && \
2222
tar -zxvf ${VERSION}.tar.gz && \
2323
cd statsd-http-proxy-${VERSION} && \
2424
# make and install source

Dockerfile.ubuntu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ RUN \
88
APT_PACKAGES="ca-certificates make git wget curl golang" && \
99
apt-get install -y --no-install-recommends ${APT_PACKAGES} && \
1010
# get latest stable version
11-
LATEST_VERSION=$(curl https://api.github.com/repos/sokil/statsd-http-proxy/releases/latest 2>/dev/null | grep tag_name | awk -F'"' '{print $4}') && \
11+
LATEST_VERSION=$(curl https://api.github.com/repos/GoMetric/statsd-http-proxy/releases/latest 2>/dev/null | grep tag_name | awk -F'"' '{print $4}') && \
1212
VERSION=${VERSION:-$LATEST_VERSION} && \
1313
# download, build source and install
14-
wget https://github.com/sokil/statsd-http-proxy/archive/${VERSION}.tar.gz && \
14+
wget https://github.com/GoMetric/statsd-http-proxy/archive/${VERSION}.tar.gz && \
1515
tar -zxvf ${VERSION}.tar.gz && \
1616
cd statsd-http-proxy-${VERSION} && \
1717
make build && \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Authentication optional and based on JWT tokens.
3535
## Installation
3636

3737
```
38-
git clone git@github.com:sokil/statsd-http-proxy.git
38+
git clone git@github.com:GoMetric/statsd-http-proxy.git
3939
make build
4040
```
4141

0 commit comments

Comments
 (0)