mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25: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
30 lines
695 B
YAML
30 lines
695 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
picsur:
|
|
image: ghcr.io/caramelfur/picsur:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
PICSUR_DB_HOST: picsur_postgres
|
|
PICSUR_DB_PORT: 5432
|
|
PICSUR_DB_USERNAME: picsur
|
|
PICSUR_DB_PASSWORD: ${POSTGRES_PASSWORD}
|
|
PICSUR_DB_DATABASE: picsur
|
|
PICSUR_ADMIN_PASSWORD: ${ADMIN_PASSWORD}
|
|
PICSUR_JWT_SECRET: ${JWT_SECRET}
|
|
expose:
|
|
- 8080
|
|
|
|
picsur_postgres:
|
|
image: postgres:17-alpine
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_DB: picsur
|
|
POSTGRES_USER: picsur
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
volumes:
|
|
- picsur-data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
picsur-data: {}
|