app-store/apps/mind/docker-compose.yml

22 lines
591 B
YAML
Raw Normal View History

2023-02-28 05:43:02 +00:00
version: '3.3'
services:
2023-03-01 20:06:08 +00:00
mind:
container_name: mind
image: mrcas/mind:v1.3.1
2023-03-01 20:06:08 +00:00
volumes:
- ${APP_DATA_DIR}/data/mind-db:/app/db
environment:
- TZ=${TZ}
ports:
- ${APP_PORT}:8080
networks:
- tipi_main_network
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.mind.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.mind.entrypoints: websecure
traefik.http.routers.mind.service: mind
traefik.http.routers.mind.tls.certresolver: myresolver
traefik.http.services.mind.loadbalancer.server.port: 8080