Created
July 7, 2021 22:01
-
-
Save bspaulding/f0dfd80e9918d9af9b0d9d35e6645f71 to your computer and use it in GitHub Desktop.
dev container deployment example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: bspaulding-dev-clojure-deployment | |
labels: | |
app: bspaulding-dev-clojure | |
spec: | |
selector: | |
matchLabels: | |
app: bspaulding-dev-clojure | |
template: | |
metadata: | |
labels: | |
app: bspaulding-dev-clojure | |
spec: | |
containers: | |
- name: clojure | |
image: bspaulding/devcontainer-clojure:openjdk-17-tools-deps-alpine | |
command: [ "/bin/bash", "-c", "--" ] | |
args: [ "while true; do sleep 30; done;" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment