mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
added puter
This commit is contained in:
parent
b12cca52f2
commit
449d0a5f36
2
.gitignore
vendored
2
.gitignore
vendored
@ -72,3 +72,5 @@ siyuan/workspace/
|
|||||||
filezilla/config/
|
filezilla/config/
|
||||||
wygiwyh/postgres_data/
|
wygiwyh/postgres_data/
|
||||||
watchyourlan/data/
|
watchyourlan/data/
|
||||||
|
puter/config/
|
||||||
|
puter/data/
|
||||||
|
35
puter/compose.yml
Normal file
35
puter/compose.yml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# https://puter.com/
|
||||||
|
|
||||||
|
# https://github.com/HeyPuter/puter/blob/main/docker-compose.yml
|
||||||
|
|
||||||
|
name: puter
|
||||||
|
|
||||||
|
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:/etc/puter
|
||||||
|
- ./data:/var/puter
|
||||||
|
healthcheck:
|
||||||
|
test: wget --no-verbose --tries=1 --spider http://puter.localhost:4100/test || exit 1
|
||||||
|
interval: 30s
|
||||||
|
timeout: 3s
|
||||||
|
retries: 3
|
||||||
|
start_period: 30s
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external: true
|
Loading…
x
Reference in New Issue
Block a user