From 77e1c1f3d5315b1eb9f962928e91ca6c025b11f0 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 16 Nov 2017 17:02:57 -0800 Subject: [PATCH] Fix a couple missed %%IMAGE%% conversions --- couchdb/content.md | 2 +- openjdk/content.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/couchdb/content.md b/couchdb/content.md index c2fb26e1a..37615de16 100644 --- a/couchdb/content.md +++ b/couchdb/content.md @@ -78,7 +78,7 @@ You can also use `couchdb` as the base image for your own couchdb instance and p Example Dockerfile: ```dockerfile -FROM %%REPO%% +FROM %%IMAGE%% COPY local.ini /usr/local/etc/couchdb/ ``` diff --git a/openjdk/content.md b/openjdk/content.md index c5a2539fb..063ea98d7 100644 --- a/openjdk/content.md +++ b/openjdk/content.md @@ -15,7 +15,7 @@ Java is a registered trademark of Oracle and/or its affiliates. The most straightforward way to use this image is to use a Java container as both the build and runtime environment. In your `Dockerfile`, writing something along the lines of the following will compile and run your project: ```dockerfile -FROM %%REPO%%:7 +FROM %%IMAGE%%:7 COPY . /usr/src/myapp WORKDIR /usr/src/myapp RUN javac Main.java