Skip to main content

Homechart

version: "3"
volumes:
  postgres: {}
  
services:
  homechart:
    depends_on:
      - postgres
    environment:
      HOMECHART_POSTGRESQL_HOSTNAME: postgres
      HOMECHART_POSTGRESQL_PASSWORD: xxxxxx
      HOMECHART_POSTGRESQL_USERNAME: postgres
      HOMECHART_APP_ADMINEMAILADDRESSES: t@f.fr
      HOMECHART_SMTP_HOSTNAME: ssl0.ovh.net
      HOMECHART_SMTP_EMAILADDRESS: a@s.com
      HOMECHART_SMTP_REPLYTO: a@s.com
      HOMECHART_SMTP_PORT: 465
      HOMECHART_SMTP_PASSWORD: xxxxxx
      HOMECHART_SMTP_USERNAME: a@s.com
    image: candiddev/homechart:latest
    ports:
      - "3031:3000"
    restart: unless-stopped
  postgres:
    environment:
      POSTGRES_PASSWORD: xxxxxx
    image: postgres:14
    restart: unless-stopped
    volumes:
      - /srv/Path/Homechart/postgres:/var/lib/postgresql/data