Skip to content

Instantly share code, notes, and snippets.

@dnburgess
Created October 30, 2021 00:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnburgess/4294009a502375ff8e51829796b5a0a5 to your computer and use it in GitHub Desktop.
Save dnburgess/4294009a502375ff8e51829796b5a0a5 to your computer and use it in GitHub Desktop.
DB Tech Homechart
services:
homechart:
depends_on:
- postgres
environment:
HOMECHART_POSTGRESQL_HOSTNAME: postgres
HOMECHART_POSTGRESQL_PASSWORD: postgres
HOMECHART_POSTGRESQL_USERNAME: postgres
HOMECHART_APP_ADMINEMAILADDRESSES: davidnburgess@gmail.com
HOMECHART_APP_BASEURL: https://home.dbt3ch.com
HOMECHART_SMTP_EMAILADDRESS: dbt3chr3v13ws@gmail.com
HOMECHART_SMTP_USERNAME: dbt3chr3v13ws@gmail.com
HOMECHART_SMTP_REPLYTO: dbt3chr3v13ws@gmail.com
HOMECHART_SMTP_HOSTNAME: smtp.gmail.com
HOMECHART_SMTP_PORT: 587
HOMECHART_SMTP_PASSWORD: 7xGYRkvpht5iLBrDFb4U4wed2tAFTfdV
image: candiddev/homechart:latest
ports:
- "3000:3000"
restart: always
postgres:
environment:
POSTGRES_PASSWORD: postgres
image: postgres:14
restart: always
volumes:
- postgres:/var/lib/postgresql/data
version: "3"
volumes:
postgres: {}
@tompie87
Copy link

tompie87 commented Nov 5, 2021

Does this file contain your password? :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment