14 lines
330 B
Docker
14 lines
330 B
Docker
# The image to use
|
|
FROM nginx:latest
|
|
|
|
# The internal port number
|
|
EXPOSE 80
|
|
|
|
RUN apt-get update && apt-get install -y vim
|
|
|
|
# Just information for container users
|
|
LABEL maintainer="Frederic G. MARAND <fgm@osinet.fr>"
|
|
|
|
# Does NOT create the volume, but tips the use that they probably want to map this.
|
|
VOLUME /usr/share/nginx/html
|
|
|