Ppang0405
Ppang0405
Explore posts from servers
DDokploy
Created by Ppang0405 on 4/1/2025 in #help
Pgbouner + Postgresql Setup
from this issue https://github.com/Dokploy/dokploy/issues/1292, I can specify a custom image to setup postgresql + pgbouncer. But which custom image I can use? or I need to create new one, how?
1 replies
DDokploy
Created by Ppang0405 on 1/24/2025 in #help
how can I configure/edit postgresql.conf in our postgresql template?
No description
1 replies
DDokploy
Created by Ppang0405 on 1/13/2025 in #help
Deploy Mellisearch use docker compose
I am a newbie. I follow this guide https://docs.dokploy.com/docs/core/docker-compose/example but when I create a domain point to port 7700, the page shows 404 not found does anyone know what thing went wrong here?
version: '3.8'

services:
meilisearch:
image: getmeili/meilisearch:v1.12
ports:
- "7700:7700"
environment:
- MEILI_MASTER_KEY=oqPwzIn5hK3t$O # Change this in production
- MEILI_NO_ANALYTICS=true
- MEILI_ENV=production
volumes:
- meilisearch_data:/meili_data
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:7700/health"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
networks:
- dokploy-network
labels:
- "traefik.enable=true"
# - "traefik.http.routers.meilisearch.rule=Host(`your-domain.com`)"
- "traefik.http.routers.meilisearch.entrypoints=websecure"
- "traefik.http.routers.meilisearch.tls.certResolver=letsencrypt"
- "traefik.http.services.meilisearch.loadbalancer.server.port=7700"

volumes:
meilisearch_data:
networks:
dokploy-network:
external: true
version: '3.8'

services:
meilisearch:
image: getmeili/meilisearch:v1.12
ports:
- "7700:7700"
environment:
- MEILI_MASTER_KEY=oqPwzIn5hK3t$O # Change this in production
- MEILI_NO_ANALYTICS=true
- MEILI_ENV=production
volumes:
- meilisearch_data:/meili_data
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:7700/health"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
networks:
- dokploy-network
labels:
- "traefik.enable=true"
# - "traefik.http.routers.meilisearch.rule=Host(`your-domain.com`)"
- "traefik.http.routers.meilisearch.entrypoints=websecure"
- "traefik.http.routers.meilisearch.tls.certResolver=letsencrypt"
- "traefik.http.services.meilisearch.loadbalancer.server.port=7700"

volumes:
meilisearch_data:
networks:
dokploy-network:
external: true
7 replies