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

Bump express from 4.17.1 to 4.17.3 #21

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ bcm*/
bcm*.tar.gz
bcm*.tar.gz.*

# build
build/*

# env
*.env
!.env.example
8 changes: 2 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
version: "3"
services:
server:
build:
context: .
dockerfile: Dockerfile.server
container_name: iot-raspi-sensors-server
image: mmontes11/iot-raspi-sensors-server:v0.0.1
env_file: .env
hostname: ${HOSTNAME}
ports:
- "${IOT_RASPI_NODE_PORT}:${IOT_RASPI_NODE_PORT}"
privileged: true
restart: unless-stopped
sensors:
build:
context: .
dockerfile: Dockerfile
container_name: iot-raspi-sensors
image: mmontes11/iot-raspi-sensors:v0.0.1
depends_on:
- server
env_file: .env
Expand Down
Loading