mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-10-31 12:31:16 -04:00
20 lines
416 B
YAML
20 lines
416 B
YAML
version: "3.9"
|
|
services:
|
|
|
|
postgres:
|
|
image: "postgres:alpine"
|
|
environment:
|
|
POSTGRES_PASSWORD: ${BLAZERCMS_POSTGRES}
|
|
ports:
|
|
- "5432:5432"
|
|
web:
|
|
build: cms/
|
|
ports:
|
|
- "8080:8080"
|
|
depends_on:
|
|
- postgres
|
|
environment:
|
|
BLAZERCMS_DATABASE_URL: ${BLAZERCMS_DATABASE_URL}
|
|
BLAZERCMS_CLIENT_ID: ${BLAZERCMS_CLIENT_ID}
|
|
BLAZERCMS_SECRET: ${BLAZERCMS_SECRET}
|