Skip to content

Commit 43005ee

Browse files
committed
migrate repository to matrix
1 parent b9549f9 commit 43005ee

7 files changed

+12
-16
lines changed

.drone.yml

-7
This file was deleted.

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.jcg.re/base-alpine
1+
FROM docker.io/matrixdotorg/base-alpine
22

33
RUN apk add --no-cache \
44
--virtual .build-deps \

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# docker-dehydrated
22

3-
[![Build Status](https://drone.jcg.re/api/badges/jcgruenhage/tex-docs/status.svg)](https://drone.jcg.re/jcgruenhage/docker-dehydrated)
3+
[![Stars](https://img.shields.io/docker/stars/matrixdotorg/dehydrated.svg)](https://img.shields.io/docker/stars/matrixdotorg/dehydrated.svg)
4+
[![Pulls](https://img.shields.io/docker/pulls/matrixdotorg/dehydrated.svg)](https://img.shields.io/docker/pulls/matrixdotorg/dehydrated.svg)
5+
[![Automated](https://img.shields.io/docker/automated/matrixdotorg/dehydrated.svg)](https://img.shields.io/docker/automated/matrixdotorg/dehydrated.svg)
6+
[![Build Status](https://img.shields.io/docker/build/matrixdotorg/dehydrated.svg)](https://img.shields.io/docker/build/matrixdotorg/dehydrated.svg)
47

5-
This is a docker container that wraps around [dehydrated](https://github.com/lukas2511/dehydrated).
8+
We use this internally for automating our certificate management using [dehydrated](https://github.com/lukas2511/dehydrated). We do not support this further than needed for our usage, but feel free to use it if you want.
69

710
## Usage
811
We have short tutorials for two different modi operandi: The `dns-01` and `http-01` challenge.

dns-01.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ For using the container with the `dns-01`-challenge, you need on your machine:
44

55
- docker-compose (and docker obviously)
66

7-
Download [the docker-compose example](https://git.jcg.re/jcgruenhage/docker-dehydrated/raw/branch/master/examples/docker-compose.dns-01.yml)
7+
Download [the docker-compose example](https://raw.githubusercontent.com/matrix-org/docker-dehydrated/master/examples/docker-compose.dns-01.yml)
88
as `docker-compose.yml` into an empty folder. Inside that folder, create the folder `data`.
99

1010
Now, create a file `data/domains.txt` in which you list the domains you want to create certificates for,
@@ -16,7 +16,7 @@ using the following format:
1616
For more information on the format, see [the dehydrated documentation](https://github.com/lukas2511/dehydrated/blob/master/docs/domains_txt.md).
1717

1818
Before running, you need to set a few things in the `docker-compose.yml` file,
19-
as explained [here in the README](https://git.jcg.re/jcgruenhage/docker-dehydrated#behaviour)
19+
as explained [here in the README](https://github.com/matrix-org/docker-dehydrated#behaviour)
2020

2121
## Configuring DNS API access
2222

examples/docker-compose.dns-01.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
services:
33
dehydrated:
4-
image: docker.jcg.re/dehydrated
4+
image: docker.io/matrixdotorg/dehydrated
55
restart: unless-stopped
66
volumes:
77
- ./data:/data

examples/docker-compose.http-01.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
services:
33
dehydrated:
4-
image: docker.jcg.re/dehydrated
4+
image: docker.io/matrixdotorg/dehydrated
55
restart: unless-stopped
66
volumes:
77
- ./data:/data

http-01.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use this container for creating certificates using the `http-01`-challenge:
77
- An http server to serve the `.well-known` folder
88
- docker-compose
99

10-
Download [the docker-compose example](https://git.jcg.re/jcgruenhage/docker-dehydrated/raw/branch/master/examples/docker-compose.http-01.yml)
10+
Download [the docker-compose example](https://raw.githubusercontent.com/matrix-org/docker-dehydrated/master/examples/docker-compose.http-01.yml)
1111
as `docker-compose.yml` into an empty folder. Inside that folder, create the folder `data/wellknown`.
1212
Configure your Webserver to serve the contents of this folder under `domain/.well-known/acme-challenge`
1313
(for all domains for which you want to create certificates).
@@ -21,7 +21,7 @@ using the following format:
2121
For more information on the format, see [the dehydrated documentation](https://github.com/lukas2511/dehydrated/blob/master/docs/domains_txt.md).
2222

2323
Before running, you need to set a few things in the `docker-compose.yml` file,
24-
as explained [here in the README](https://git.jcg.re/jcgruenhage/docker-dehydrated#behaviour)
24+
as explained [here in the README](https://github.com/matrix-org/docker-dehydrated#behaviour)
2525

2626
## Using docker-dehydrated
2727

0 commit comments

Comments
 (0)