mirror of
https://github.com/Dokploy/templates.git
synced 2026-04-29 20:37:57 -05:00
* add anytype template * sort * Update name field for Anytype in meta.json * Update meta.json * Update docker-compose.yml * Update blueprints/anytype/docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
20 lines
588 B
YAML
20 lines
588 B
YAML
# Example: Any-Sync-Bundle with embedded MongoDB and Redis (all-in-one image)
|
|
#
|
|
# Usage:
|
|
# docker compose -f compose.aio.yml up -d
|
|
#
|
|
# The bundle image already contains MongoDB and Redis. Only the bundle service is required
|
|
|
|
services:
|
|
any-sync-bundle:
|
|
image: ghcr.io/grishy/any-sync-bundle:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- "33010:33010"
|
|
- "33020:33020/udp"
|
|
volumes:
|
|
- ./data:/data
|
|
environment:
|
|
# Advertise addresses clients should use. Replace with your server hostname/IP.
|
|
ANY_SYNC_BUNDLE_INIT_EXTERNAL_ADDRS: "192.168.100.9"
|