Created
February 20, 2022 01:05
-
-
Save larkintuckerllc/6f44ad71aa5666a9a491497b498a062b to your computer and use it in GitHub Desktop.
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
# Use postgres/example user/password credentials | |
version: '3.1' | |
services: | |
db: | |
image: postgres | |
restart: always | |
environment: | |
POSTGRES_PASSWORD: example | |
adminer: | |
image: adminer | |
restart: always | |
ports: | |
- 8080:8080 | |
backstage: | |
image: backstage | |
restart: always | |
ports: | |
- 7007:7007 | |
environment: | |
- POSTGRES_HOST=${POSTGRES_HOST} | |
- POSTGRES_PORT=${POSTGRES_PORT} | |
- POSTGRES_USER=${POSTGRES_USER} | |
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD} | |
- AUTH_GITHUB_CLIENT_ID=${AUTH_GITHUB_CLIENT_ID} | |
- AUTH_GITHUB_CLIENT_SECRET=${AUTH_GITHUB_CLIENT_SECRET} | |
- GITHUB_APP_CREDENTIALS=${GITHUB_APP_CREDENTIALS} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment