Skip to content

Commit 8d7160d

Browse files
committed
Update container address
1 parent 97d1b0e commit 8d7160d

File tree

5 files changed

+23
-5
lines changed

5 files changed

+23
-5
lines changed

.devcontainer/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/crcont/antora:latest
1+
FROM quay.io/crc-org/antora:3.1.9
22

33
RUN apk update \
44
&& apk add git
File renamed without changes.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ SHELL := /bin/bash -o pipefail
22

33
# Docs build related variables
44
DOCS_BUILD_DIR ?= public
5-
DOCS_BUILD_CONTAINER ?= quay.io/crcont/antora:latest
5+
DOCS_BUILD_CONTAINER ?= quay.io/crc-org/antora:3.1.9
66
DOCS_SERVE_CONTAINER ?= docker.io/httpd:alpine
77
DOCS_TEST_CONTAINER ?= docker.io/wjdp/htmltest:latest
88
DOCS_BUILD_TARGET ?= ./source/getting_started/master.adoc
@@ -15,7 +15,7 @@ endif
1515

1616
.PHONY: build_docs
1717
build_docs:
18-
${CONTAINER_RUNTIME} run -e CI -v $(CURDIR):/antora$(SELINUX_VOLUME_LABEL) --rm $(DOCS_BUILD_CONTAINER) --stacktrace antora-playbook.yml
18+
${CONTAINER_RUNTIME} run -e CI -v $(CURDIR):/workspace$(SELINUX_VOLUME_LABEL) --rm $(DOCS_BUILD_CONTAINER) --stacktrace antora-playbook.yml
1919

2020
.PHONY: docs_serve
2121
docs_serve: build_docs
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM docker.io/antora/antora
2-
LABEL org.opencontainers.image.source="https://github.com/crc-org/crc"
2+
3+
LABEL org.opencontainers.image.source="https://github.com/crc-org/docs"
4+
35
RUN yarn global add --ignore-optional --silent \
46
@antora/atlas-extension \
57
@antora/cli \
@@ -8,4 +10,7 @@ RUN yarn global add --ignore-optional --silent \
810
@antora/pdf-extension \
911
@antora/site-generator \
1012
asciidoctor-kroki
11-
RUN antora --version
13+
14+
RUN mkdir -p /workspace
15+
VOLUME /workspace
16+
WORKDIR /workspace

containers/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Antora generation image
2+
=======================
3+
4+
This image is a modification of the upstream Alpine-based
5+
image to contain a few additional extensions
6+
7+
8+
## Usage instructions
9+
```shell
10+
$ podman run -v $PWD:/workspace \
11+
quay.io/crc-org/antora:3.1.9 \
12+
antora-playbook.yml
13+
```

0 commit comments

Comments
 (0)