Skip to content

Commit cc092ff

Browse files
committed
feature: resolve #396 add git to containers
- This allows users to deploy apps that uses git
1 parent 74c5a6c commit cc092ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ fi
9191

9292
# pull node docker image
9393
if docker ps > /dev/null 2>&1; then
94-
docker pull node:alpine
94+
docker pull devwong0305/myproxy-node:latest
9595
else
9696
echo "WARNING: Couldn't run docker commands"
9797
echo "WARNING: Make sure your user has the right permissions"

src/helpers/docker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const createContainer = async (
3535
const workPath = path.resolve(environment.WORKPATH, fullDomain)
3636
return docker
3737
.createContainer({
38-
Image: 'node:alpine',
38+
Image: 'devwong0305/myproxy-node:latest', // Image should be copied to GarageScript account later so its more official
3939
name: fullDomain,
4040
User: 'node',
4141
ExposedPorts: {

0 commit comments

Comments
 (0)