Skip to main content

Docker-Compose.yml

version: "3"
volumes:
  postgres: {}
  
services:
  homechart:
    depends_on:
      - postgres
    environment:
      HOMECHART_POSTGRESQL_HOSTNAME: postgres
      HOMECHART_POSTGRESQL_PASSWORD: postgres
      HOMECHART_POSTGRESQL_USERNAME: postgres
    image: candiddev/homechart:latest
    ports:
      - "3030:3000"
    restart: always
  postgres:
    environment:
      POSTGRES_PASSWORD: postgres
    image: postgres:14
    restart: always
    volumes:
      - postgres:/var/lib/postgresql/data

Additional Environmental Variables can be found here: https://hub.docker.com/r/candiddev/homechart