diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-03-26 21:24:51 +0100 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-03-26 21:24:51 +0100 |
commit | c23aef5069076aef47aaff35f70492aaf83462f7 (patch) | |
tree | dbdcc282b57cf0ff57f8f9f3edb59d17e84b93ea /kubernetes/puter/compose.yaml | |
parent | 59478b04fba7638254fc73ce6070ea90fa6e00c2 (diff) |
k8s: adds puter, converted w/ kompose (w.i.p.)
Diffstat (limited to 'kubernetes/puter/compose.yaml')
-rw-r--r-- | kubernetes/puter/compose.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/kubernetes/puter/compose.yaml b/kubernetes/puter/compose.yaml new file mode 100644 index 0000000..f65da3e --- /dev/null +++ b/kubernetes/puter/compose.yaml @@ -0,0 +1,19 @@ +--- +services: + puter: + container_name: puter + image: ghcr.io/heyputer/puter:latest + pull_policy: always + # build: ./ + restart: always + ports: + - '4100:4100' + environment: + TZ: Europe/Paris + # CONFIG_PATH: /etc/puter + PUID: 1000 + PGID: 1000 + volumes: + - ${PWD}/config:/etc/puter + - ${PWD}/data:/var/puter +... |