first commit
8
Dockerfile
Normal 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
|
8
docker-compose.yml
Normal 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
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
0
imgs/Pna2.jpg
Executable file → Normal file
Before Width: | Height: | Size: 207 KiB After Width: | Height: | Size: 207 KiB |
0
imgs/Pna3.jpg
Executable file → Normal file
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
0
imgs/info-circle-solid.png
Executable file → Normal file
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |