react next / node typescript service -- KubeCollection-PostModerationKube
820
Kube cluster is controlled with skaffold. This version is designed to desktop development. See config below.
TO HOST and AUTO UPDATE FILES LIVE IN DOCKER when in DEV using Docker desktop.... from https://skaffold.dev/docs/install/
installed on mac with; brew install skaffold
START --in the main directory skaffold dev
STOP Cntrl-C
Place skaffold.yaml and all the Docker Projects in the same directory... client comments event-bus infra moderation posts query skaffold.yaml skaffoldNotes.txt
FROM skaffold.yaml
apiVersion: skaffold/v2alpha3 kind: Config deploy: kubectl: manifests: - ./infra/k8s/* build: local: push: false artifacts: - image: cgraphics/client context: client docker: dockerfile: Dockerfile sync: manual: - src: 'src/**/.js' dest: . - image: cgraphics/comments context: comments docker: dockerfile: Dockerfile sync: manual: - src: '.js' dest: . - image: cgraphics/event-bus context: event-bus docker: dockerfile: Dockerfile sync: manual: - src: '.js' dest: . - image: cgraphics/moderation context: moderation docker: dockerfile: Dockerfile sync: manual: - src: '.js' dest: . - image: cgraphics/posts context: posts docker: dockerfile: Dockerfile sync: manual: - src: '.js' dest: . - image: cgraphics/query context: query docker: dockerfile: Dockerfile sync: manual: - src: '.js' dest: .
Content type
Image
Digest
Size
118.2 MB
Last updated
about 6 years ago
docker pull cgraphics/client