Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Last active February 20, 2022 11:55
Show Gist options
  • Save larkintuckerllc/842351867c8bd0765c0df3c21e8e1013 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/842351867c8bd0765c0df3c21e8e1013 to your computer and use it in GitHub Desktop.
# 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