mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-03 04:55:24 +02:00
* Add blueprints for wanderer and yamtrack applications with Docker configurations and templates * Add Vikunja blueprint * Add Tor Browser blueprint with Docker configuration and template * Add Picsur image hosting blueprint with Docker configuration and template * Create new blueprint for deploying Pastefy with MariaDB and OAuth support * Added Morsphs * Add KitchenOwl blueprint with Docker Compose configuration and template * Add Kokoro Web blueprint with Docker Compose configuration and template * added HortusFox * added gitingest * Add Etherpad blueprint with Docker Compose configuration and template * Add drawnix blueprint with Docker Compose configuration and template * arranged Meta
27 lines
456 B
YAML
27 lines
456 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
yamtrack:
|
|
image: ghcr.io/fuzzygrim/yamtrack
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
- SECRET=${SECRET}
|
|
- REDIS_URL=redis://redis:6379
|
|
volumes:
|
|
- yamtrack-db:/yamtrack/db
|
|
expose:
|
|
- 8000
|
|
|
|
redis:
|
|
image: redis:7-alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- redis_data:/data
|
|
|
|
volumes:
|
|
yamtrack-db: {}
|
|
redis_data: {}
|