Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Demo Servicio de tizada #113

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
docker-compose.yml
Dockerfile
*.svg
LICENSE.txt
readme.md
*.csv
lambda
lambda/*
.idea
.idea/*
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/lambda/node_modules/
/lambda/Archive.zip
*.svg
/*.svg
/.idea/inspectionProfiles/Project_Default.xml
/.idea/.gitignore
/.idea/.name
/.idea/aws.xml
/.idea/detekt.xml
/.idea/misc.xml
/.idea/modules.xml
/.idea/php.xml
/.idea/SVGnest.iml
/.idea/vcs.xml
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Use the official Nginx image from Docker Hub
FROM nginx:alpine

# Copy your Nginx configuration file
COPY nginx.conf /etc/nginx/nginx.conf

# Copy your public directory to the Nginx html directory
COPY . /usr/share/nginx/html

# Expose the port Nginx will run on
EXPOSE 80
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: '3'

services:
web:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:80"
volumes:
- ./:/usr/share/nginx/html
container_name: servicio_de_tizada_web
Loading