Created
October 30, 2021 00:28
-
-
Save dnburgess/4294009a502375ff8e51829796b5a0a5 to your computer and use it in GitHub Desktop.
DB Tech Homechart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
homechart: | |
depends_on: | |
- postgres | |
environment: | |
HOMECHART_POSTGRESQL_HOSTNAME: postgres | |
HOMECHART_POSTGRESQL_PASSWORD: postgres | |
HOMECHART_POSTGRESQL_USERNAME: postgres | |
HOMECHART_APP_ADMINEMAILADDRESSES: [email protected] | |
HOMECHART_APP_BASEURL: https://home.dbt3ch.com | |
HOMECHART_SMTP_EMAILADDRESS: [email protected] | |
HOMECHART_SMTP_USERNAME: [email protected] | |
HOMECHART_SMTP_REPLYTO: [email protected] | |
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: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this file contain your password? :)