first commit

This commit is contained in:
Marcos Elias Rios Nuñez 2024-12-09 21:24:45 -03:00
parent 3ca17eeb91
commit 17185a3984
7 changed files with 16 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
# Usa la imagen oficial de Nginx
FROM nginx:alpine
# Copia los archivos del proyecto al directorio que Nginx usa como raíz
COPY . /usr/share/nginx/html
# Expone el puerto 80
EXPOSE 80

0
README.md Executable file → Normal file
View File

8
docker-compose.yml Normal file
View File

@ -0,0 +1,8 @@
version: '3.9'
services:
web:
build: .
ports:
- "8084:80"
volumes:
- .:/usr/share/nginx/html

0
imgs/Pna.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

0
imgs/Pna2.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 207 KiB

After

Width:  |  Height:  |  Size: 207 KiB

0
imgs/Pna3.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 74 KiB

0
imgs/info-circle-solid.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB