We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c5a6c commit cc092ffCopy full SHA for cc092ff
scripts/setup.sh
@@ -91,7 +91,7 @@ fi
91
92
# pull node docker image
93
if docker ps > /dev/null 2>&1; then
94
- docker pull node:alpine
+ docker pull devwong0305/myproxy-node:latest
95
else
96
echo "WARNING: Couldn't run docker commands"
97
echo "WARNING: Make sure your user has the right permissions"
src/helpers/docker.ts
@@ -35,7 +35,7 @@ const createContainer = async (
35
const workPath = path.resolve(environment.WORKPATH, fullDomain)
36
return docker
37
.createContainer({
38
- Image: 'node:alpine',
+ Image: 'devwong0305/myproxy-node:latest', // Image should be copied to GarageScript account later so its more official
39
name: fullDomain,
40
User: 'node',
41
ExposedPorts: {
0 commit comments