Skip to content

Commit

Permalink
Remove all dockerr images each run
Browse files Browse the repository at this point in the history
pieterbrandsen committed Dec 24, 2023
1 parent e58c476 commit 73680e6
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "screeps-performance-server",
"version": "1.12.1",
"version": "1.12.2",
"dependencies": {
"@octokit/core": "^4.2.0",
"discord.js": "^14.9.0",
6 changes: 3 additions & 3 deletions src/helper.js
Original file line number Diff line number Diff line change
@@ -78,8 +78,8 @@ export default class Helper {
await api.auth();

api.socket.connect();
api.socket.on("connected", () => {});
api.socket.on("auth", () => {});
api.socket.on("connected", () => { });
api.socket.on("auth", () => { });
api.socket.subscribe(`room:${room}`, statusUpdater);
api.socket.subscribe("console", (event) => {
if (event.data.messages) {
@@ -156,7 +156,7 @@ export default class Helper {
* @return {object}
*/
static async startServer() {
const stopCommand = `${basicCommand} down --volumes --remove-orphans`;
const stopCommand = `${basicCommand} down --volumes --remove-orphans --rmi`;
const upCommand = `${basicCommand} up`;
const serverLogsCommand = `${basicCommand} logs -f screeps`;

0 comments on commit 73680e6

Please sign in to comment.