diff --git a/container/compose.yml b/container/compose.yml deleted file mode 100644 index 4d4d701..0000000 --- a/container/compose.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: '3.3' -services: - frostbyte: - container_name: frostbyte - build: - dockerfile: Containerfile - ports: - - '8080:8080' - restart: always - logging: - options: - max-size: 10m - image: frostbyte diff --git a/container/kube.yml b/container/kube.yml deleted file mode 100644 index 076b21b..0000000 --- a/container/kube.yml +++ /dev/null @@ -1,16 +0,0 @@ -# This is not working - -apiVersion: v1 -kind: Pod -metadata: - labels: - app: frostbyte-pod - name: fbpod -spec: - containers: - - image: "." - name: frostbyte - ports: - - containerPort: 8080 - hostPort: 8080 - securityContext: {}