Files
templates/blueprints/wanderer/docker-compose.yml
Jainil Prajapati 🪐 77266b3bd1 ATTENTION IS ALL YOU NEED (#313)
* 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
2025-08-28 00:22:23 -06:00

73 lines
1.8 KiB
YAML

version: "3.8"
services:
search:
image: getmeili/meilisearch:v1.11.3
environment:
MEILI_URL: http://search:7700
MEILI_MASTER_KEY: ${MEILI_MASTER_KEY}
MEILI_NO_ANALYTICS: "true"
volumes:
- search-data:/meili_data/data.ms
restart: unless-stopped
healthcheck:
test: curl --fail http://localhost:7700/health || exit 1
interval: 15s
retries: 10
start_period: 20s
timeout: 10s
db:
image: flomp/wanderer-db
depends_on:
search:
condition: service_healthy
environment:
MEILI_URL: http://search:7700
MEILI_MASTER_KEY: ${MEILI_MASTER_KEY}
POCKETBASE_ENCRYPTION_KEY: ${POCKETBASE_ENCRYPTION_KEY}
ORIGIN: ${ORIGIN}
volumes:
- db-data:/pb_data
restart: unless-stopped
healthcheck:
test: wget --spider -q http://localhost:8090/health || exit 1
interval: 15s
retries: 10
start_period: 20s
timeout: 10s
web:
image: flomp/wanderer-web
depends_on:
search:
condition: service_healthy
db:
condition: service_healthy
environment:
MEILI_URL: http://search:7700
MEILI_MASTER_KEY: ${MEILI_MASTER_KEY}
ORIGIN: ${ORIGIN}
BODY_SIZE_LIMIT: Infinity
PUBLIC_POCKETBASE_URL: http://db:8090
PUBLIC_DISABLE_SIGNUP: "false"
UPLOAD_FOLDER: /app/uploads
UPLOAD_USER: ${UPLOAD_USER}
UPLOAD_PASSWORD: ${UPLOAD_PASSWORD}
PUBLIC_VALHALLA_URL: https://valhalla1.openstreetmap.de
PUBLIC_NOMINATIM_URL: https://nominatim.openstreetmap.org
volumes:
- uploads:/app/uploads
restart: unless-stopped
healthcheck:
test: curl --fail http://localhost:3000/ || exit 1
interval: 15s
retries: 10
start_period: 20s
timeout: 10s
volumes:
search-data: {}
db-data: {}
uploads: {}