Last active
February 20, 2022 11:55
-
-
Save larkintuckerllc/842351867c8bd0765c0df3c21e8e1013 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 | |
volumes: | |
- ${PWD}/github-app-backstage-mybackstageapp-credentials.yaml:/app/github-app-backstage-mybackstageapp-credentials.yaml | |
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} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment