Removed merge conflict from Docker example web page

This commit is contained in:
Howard Nguyen 2017-03-28 18:12:47 -07:00
parent 9ce3c5ae6c
commit 0acdc8159c
1 changed files with 6 additions and 34 deletions

View File

@ -83,59 +83,31 @@ Example uses of all of the options, assuming one is building an NGINX image from
Allowed metadata fields that can be changed are:
<<<<<<< HEAD
- `CMD`
- String, supports both array (escaped) and string form
- EX: `”CMD [\"nginx\", \"-g\", \"daemon off;\"]"`
- EX: `"CMD nginx -g daemon off;”`
- `ENTRYPOINT`
- String
- EX: `“ENTRYPOINT /var/www/start.sh”`
- `ENV`
- String, note there is no equal sign:
- EX: `“ENV HOSTNAME www.example.com”` not `“ENV HOSTNAME=www.example.com”`
- `EXPOSE`
- String, space separated ports
- EX: `“EXPOSE 80 443”`
- `MAINTAINER`
- String
- EX: `“MAINTAINER NAME”`
- `USER`
- String
- EX: `“USER USERNAME”`
- `VOLUME`
- String
- EX: `“VOLUME FROM TO“`
- `WORKDIR`
- String
- EX: `“WORKDIR PATH”`
=======
- CMD
- String, supports both array (escaped) and string form
- EX: `"CMD [\"nginx\", \"-g\", \"daemon off;\"]"`
- EX: `"CMD nginx -g daemon off;"`
- ENTRYPOINT
- String
- String
- EX: `"ENTRYPOINT /var/www/start.sh"`
- ENV
- String, note there is no equal sign:
- String, note there is no equal sign:
- EX: `"ENV HOSTNAME www.example.com"` not `"ENV HOSTNAME=www.example.com"`
- EXPOSE
- String, space separated ports
- String, space separated ports
- EX: `"EXPOSE 80 443"`
- MAINTAINER
- String
- String
- EX: `"MAINTAINER NAME"`
- USER
- String
- String
- EX: `"USER USERNAME"`
- VOLUME
- String
- String
- EX: `"VOLUME FROM TO"`
- WORKDIR
- String
- EX: `"WORKDIR PATH"`
>>>>>>> mitchellh/master
## Configuration Reference