feat(docker-compose): added a simple docker compose to get people started with example backend and frontend

This commit is contained in:
blam
2020-07-15 10:47:25 +02:00
parent 8ec6ed5170
commit 76952ea307
4 changed files with 47 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
version: '3'
services:
frontend:
image: 'spotify/backstage:latest'
ports:
- '3000:80'
environment: &environment
ROLLBAR_ACCOUNT_TOKEN: TOKEN
SENTRY_TOKEN: TOKEN
GITHUB_ACCESS_TOKEN: TOKEN
backend:
image: 'example-backend:latest'
ports:
- '7000:7000'
environment: *environment