- node.js
- Docker
Run npm install
to install the node modules
Run npm start
Access at localhost:3000
Run docker-compose -f docker-compose.yml up -d --build
Access at localhost:80
Update the tag to create a new version
export PROJECT_ID=jjgames
export TAG=v4
docker build -f Dockerfile -t gcr.io/$PROJECT_ID/sr-games:$TAG .
gcloud services enable containerregistry.googleapis.com
gcloud auth configure-docker
docker push gcr.io/$PROJECT_ID/sr-games:$TAG