diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index b349e39..4893600 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -10,4 +10,5 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
USER vscode
RUN curl --proto '=https' --tlsv1.2 -sSf curl https://sh.rustup.rs | sh -s -- -y
+# RUN rustup target add x86_64-unknown-linux-musl
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ea0d653..f6cf07d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,7 +10,7 @@
### Fixes
+ devcontainer updated, [3bde4f5629539cab3dbb57556663ab81685f9d7a]
-+ Use Binate value to enable two cycles of cpu/mem update to be executed (for each container) at the same time, refactor hashmap spawn sinsertions, [7ec58e79a1316ad1f7e50a2781dea0fe8422c588]
++ Use Binate enum to enable two cycles of cpu/mem update to be executed (for each container) at the same time, refactor hashmap spawn insertions, [7ec58e79a1316ad1f7e50a2781dea0fe8422c588]
### Refactors
+ improved way to remove leading '/' of container name, [832e9782d7765872cbb84df6b3703fc08cb353c9]
diff --git a/README.md b/README.md
index a84dbce..a6a9ac1 100644
--- a/README.md
+++ b/README.md
@@ -22,14 +22,14 @@
## Run via Docker
-Now published on Docker Hub, with images built for `linux/amd64`, `linux/arm64v8`, and `linux/armv6`
+Published on Docker Hub, with images built for `linux/amd64`, `linux/arm64v8`, and `linux/armv6`
`docker run --rm -it --volume /var/run/docker.sock:/var/run/docker.sock:ro mrjackwills/oxker:latest`
## Download & install
-Now published on crates.io, so if you have cargo installed, simply run
+Published on crates.io, so if you have cargo installed, simply run
```cargo install oxker```
diff --git a/containerised/start_oxker.sh b/containerised/start_oxker.sh
index d0563c0..7ac5fa3 100755
--- a/containerised/start_oxker.sh
+++ b/containerised/start_oxker.sh
@@ -1,6 +1,7 @@
#!/bin/sh
set -e
+# Without this sleep, the docker image will instantly close
# No idea why this is solving my issue, or even where the issue is originally coming from
sleep .1