aboutsummaryrefslogtreecommitdiff
path: root/kubernetes/puter/compose.yaml
blob: f65da3e441929723dee5ac1e0efcb4f58be4fcde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
...