Skip to content

Commit b3f23f6

Browse files
committed
revert port change, update linkedin url
1 parent b0198e0 commit b3f23f6

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ FROM nginx:1.25.4-alpine3.18
1717
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
1818
COPY --from=build /app/dist /var/www/html/
1919

20-
EXPOSE 5173
20+
EXPOSE 80
2121

2222
ENTRYPOINT ["nginx","-g","daemon off;"]

docker-compose.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
services:
2+
portfolio-svelte:
3+
build:
4+
context: .
5+
dockerfile: Dockerfile
6+
container_name: portfolio-svelte
7+
restart: unless-stopped
8+
ports:
9+
- "80:80"

nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
server {
2-
listen 5173;
2+
listen 80;
33
server_name localhost;
44

55
location / {

src/components/layout/Intro.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const Intro = () => {
4040
/>
4141
</Link>
4242
<Link
43-
to="https://www.linkedin.com/in/jake-farrell-2a4674239"
43+
to="https://www.linkedin.com/in/jake-farrell-cs"
4444
target="_blank"
4545
className="hover:text-blue-700 transform hover:scale-110 transition duration-300"
4646
>

0 commit comments

Comments
 (0)