mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
25 lines
606 B
YAML
25 lines
606 B
YAML
---
|
|
version: "3.8"
|
|
services:
|
|
puter:
|
|
container_name: puter
|
|
image: ghcr.io/heyputer/puter:latest
|
|
pull_policy: always
|
|
# build: ./
|
|
restart: unless-stopped
|
|
ports:
|
|
- '4100:4100'
|
|
environment:
|
|
# TZ: Europe/Paris
|
|
# CONFIG_PATH: /etc/puter
|
|
PUID: 1000
|
|
PGID: 1000
|
|
volumes:
|
|
- ./config:/opt/puter/app/volatile/config
|
|
- ./data:/opt/puter/app/volatile/runtime
|
|
# healthcheck:
|
|
# test: wget --no-verbose --tries=1 --spider http://localhost:4100 || exit 1
|
|
# interval: 5m
|
|
# timeout: 3s
|
|
# retries: 3
|
|
# start_period: 2m |