This website works better with JavaScript.
Home
Explore
Help
Sign In
jrtechs
/
jrtechs-Portfolio_Website
mirror of
https://github.com/jrtechs/Portfolio_Website.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
2 Commits
b73831188e
...
782a271de8
Author
SHA1
Message
Date
jrtechs
782a271de8
Updated jquery version
4 days ago
jrtechs
9e75f5b33b
Updated docker deployment
4 days ago
6 changed files
with
21 additions
and
10256 deletions
Split View
Diff Options
Show Stats
+2
-1
Dockerfile
+12
-0
docker-compose.yml
+1
-1
index.html
+0
-10253
js/jquery.js
+1
-1
messageSent.html
+5
-0
nginx/default.conf
+ 2
- 1
Dockerfile
View File
@ -3,5 +3,6 @@
FROM
nginx
COPY
./ /usr/share/nginx/html/
COPY
nginx/default.conf /etc/nginx/conf.d/default.conf
EXPOSE
6666
EXPOSE
4001
+ 12
- 0
docker-compose.yml
View File
@ -0,0 +1,12 @@
services:
portfolio:
build
:
.
ports:
-
"4001:4001"
container_name
:
portfolio-website
networks:
-
external-network
networks:
external-network:
external
:
true
+ 1
- 1
index.html
View File
@ -1208,7 +1208,7 @@
<
/
div
>
<!--
Bootstrap core JavaScript
-->
<
script
src
=
"
js/jquery
.min.js"
>
<
/
script
>
<
script
src
=
"
https://code.jquery.com/jquery-3.7.1
.min.js"
>
<
/
script
>
<
script
src
=
"js/popper.min.js"
>
<
/
script
>
<
script
src
=
"js/bootstrap.min.js"
>
<
/
script
>
+ 0
- 10253
js/jquery.js
File diff suppressed because it is too large
View File
+ 1
- 1
messageSent.html
View File
@ -153,7 +153,7 @@
<!--
Bootstrap core JavaScript
-->
<
script
src
=
"
js/jquery
.min.js"
>
<
/
script
>
<
script
src
=
"
https://code.jquery.com/jquery-3.7.1
.min.js"
>
<
/
script
>
<
script
src
=
"js/popper.min.js"
>
<
/
script
>
<
script
src
=
"js/bootstrap.min.js"
>
<
/
script
>
+ 5
- 0
nginx/default.conf
View File
@ -0,0 +1,5 @@
server {
listen 4001;
server_name default;
root /usr/share/nginx/html;
}
Write
Preview
Loading…
Cancel
Save