Merge pull request #6 from clems4ever/publish-port

Expose port 80 in the Dockerfile
pull/10/head
Clément Michaud 2017-01-13 00:01:22 +01:00 committed by GitHub
commit a1a3da650c
3 changed files with 4 additions and 4 deletions

View File

@ -7,4 +7,7 @@ RUN npm install
COPY src /usr/src
ENV PORT=80
EXPOSE 80
CMD ["node", "index.js"]

View File

@ -9,11 +9,8 @@ services:
- TOTP_SECRET=GRWGIJS6IRHVEODVNRCXCOBMJ5AGC6ZE
- JWT_SECRET=unsecure_secret
- JWT_EXPIRATION_TIME=1h
- PORT=80
depends_on:
- ldap
expose:
- "80"
restart: always
ldap:

View File

@ -1,6 +1,6 @@
{
"name": "two-factor-auth-server",
"version": "1.0.10",
"version": "1.0.11",
"description": "Simple two factor authentication server with LDAP backend and TOTP",
"main": "src/index.js",
"scripts": {