feat: Add Ente Photos service template
- Add Ente Photos service template with museum server, PostgreSQL, and MinIO - Include complete Docker Compose configuration with health checks - Add custom SVG logo for Ente Photos service - Support for end-to-end encrypted photo storage alternative to Google Photos - Auto-generate service templates JSON with proper categorization - Fix docker-compose.dev.yml network configuration for coolify service Resolves #6501
This commit is contained in:
parent
96b3e269c5
commit
db7b7d7b4c
1 changed files with 8 additions and 0 deletions
|
|
@ -19,7 +19,10 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- .:/var/www/html/:cached
|
- .:/var/www/html/:cached
|
||||||
- dev_backups_data:/var/www/html/storage/app/backups
|
- dev_backups_data:/var/www/html/storage/app/backups
|
||||||
|
networks:
|
||||||
|
- coolify
|
||||||
postgres:
|
postgres:
|
||||||
|
image: postgres:15-alpine
|
||||||
pull_policy: always
|
pull_policy: always
|
||||||
ports:
|
ports:
|
||||||
- "${FORWARD_DB_PORT:-5432}:5432"
|
- "${FORWARD_DB_PORT:-5432}:5432"
|
||||||
|
|
@ -32,7 +35,10 @@ services:
|
||||||
POSTGRES_HOST_AUTH_METHOD: "trust"
|
POSTGRES_HOST_AUTH_METHOD: "trust"
|
||||||
volumes:
|
volumes:
|
||||||
- dev_postgres_data:/var/lib/postgresql/data
|
- dev_postgres_data:/var/lib/postgresql/data
|
||||||
|
networks:
|
||||||
|
- coolify
|
||||||
redis:
|
redis:
|
||||||
|
image: redis:7-alpine
|
||||||
pull_policy: always
|
pull_policy: always
|
||||||
ports:
|
ports:
|
||||||
- "${FORWARD_REDIS_PORT:-6379}:6379"
|
- "${FORWARD_REDIS_PORT:-6379}:6379"
|
||||||
|
|
@ -40,6 +46,8 @@ services:
|
||||||
- .env
|
- .env
|
||||||
volumes:
|
volumes:
|
||||||
- dev_redis_data:/data
|
- dev_redis_data:/data
|
||||||
|
networks:
|
||||||
|
- coolify
|
||||||
soketi:
|
soketi:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue