mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
- .devcontainer/Dockerfile: add PostgreSQL client libs, OpenSSL/libffi headers, gfortran/BLAS for scipy, rclone; install full Python dependency set (boto3, psycopg2-binary, fastapi, uvicorn, notion-client, httpx, pytest, numpy, scipy, etc.) in uv-managed venv; add rclone S3 gateway init script as ENTRYPOINT - .devcontainer/devcontainer.json: switch from build to pre-built image (localhost/research
30 lines
592 B
YAML
30 lines
592 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: homer
|
|
namespace: services
|
|
labels:
|
|
app: homer
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: homer
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: homer
|
|
spec:
|
|
containers:
|
|
- name: homer
|
|
image: b4bz/homer:latest
|
|
ports:
|
|
- containerPort: 8080
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /www/assets/config.yml
|
|
subPath: config.yml
|
|
volumes:
|
|
- name: config
|
|
configMap:
|
|
name: homer-config
|