Skip to content
This repository was archived by the owner on Nov 8, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
FROM fedora
MAINTAINER http://fedoraproject.org/wiki/Cloud
FROM registry.fedoraproject.org/fedora:25
LABEL MAINTAINER='http://fedoraproject.org/wiki/Cloud'

RUN dnf -y update && dnf clean all
RUN dnf -y install nginx && dnf clean all
ENV NAME=nginx VERSION=0.1 RELEASE=1
# Atomic RUN label, enables the atomic cli
LABEL RUN='docker run --name nginx -d -p 80:80 $IMAGE' \
BZComponent="$NAME" \
Name="$FGC/$NAME" \
Version="$VERSION" \
Release="$RELEASE.$DISTTAG" \
Architecture="$ARCH"


RUN dnf -y update && dnf -y install nginx && dnf clean all
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
RUN echo "nginx on Fedora" > /usr/share/nginx/html/index.html

Expand Down
12 changes: 9 additions & 3 deletions ssh/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
FROM docker.io/fedora
MAINTAINER http://fedoraproject.org/wiki/Cloud
FROM registry.fedoraproject.org/fedora:25
LABEL MAINTAINER='http://fedoraproject.org/wiki/Cloud'

ENV NAME=ssh VERSION=0.1 RELEASE=1
# Atomic RUN label, enables the atomic cli
LABEL RUN='docker run --name ssh -d -p 2200:22 $IMAGE'
LABEL RUN='docker run --name ssh -d -p 2200:22 $IMAGE' \
BZComponent="$NAME" \
Name="$FGC/$NAME" \
Version="$VERSION" \
Release="$RELEASE.$DISTTAG" \
Architecture="$ARCH"

EXPOSE 22

Expand Down