This website works better with JavaScript.
Home
Explore
Help
Sign In
gmarx
/
web
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
initial commit
master
Gerardo Marx Chávez-Campos
3 years ago
commit
bda5c2655a
4 changed files
with
23 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
Dockerfile
+6
-0
Readme.md
+9
-0
docker-compose.yml
+0
-0
nginx.conf
+ 8
- 0
Dockerfile
View File
@ -0,0 +1,8 @@
FROM
nginx
MAINTAINER
gmarxcc
#enable the autoindex option
RUN
sed -i
'N; s/root \/usr\/share\/nginx\/html;\n index index.html index.htm;/root \/usr\/share\/nginx\/html;\n autoindex on;/'
/etc/nginx/conf.d/default.conf
#COPY nginx.conf /etc/nginx/nginx.conf
#COPY html /usr/share/nginx/html
+ 6
- 0
Readme.md
View File
@ -0,0 +1,6 @@
# Readme
This itm-web use
```
$ docker build .
```
+ 9
- 0
docker-compose.yml
View File
@ -0,0 +1,9 @@
version
:
'3'
services:
web:
build
:
.
restart
:
always
volumes:
-
./html:/usr/share/nginx/html:ro
ports:
-
'7805:80'
+ 0
- 0
nginx.conf
View File
Write
Preview
Loading…
Cancel
Save