-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (31 loc) · 967 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (31 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
services:
db:
image: postgres:17.4-alpine
restart: always
environment:
POSTGRES_DB: revisium-dev
POSTGRES_USER: revisium
POSTGRES_PASSWORD: password
revisium:
pull_policy: always
depends_on:
- db
image: revisium/revisium:v2.0.0-alpha.1
ports:
- 8080:8080
environment:
DATABASE_URL: postgresql://revisium:password@db:5432/revisium-dev?schema=public
# METRICS_ENABLED: "true"
# GRACEFUL_SHUTDOWN_TIMEOUT: 10000
# FILE_PLUGIN_PUBLIC_ENDPOINT: 'https://...'
# S3_ENDPOINT: ''
# S3_REGION: ''
# S3_BUCKET: ''
# S3_ACCESS_KEY_ID: ''
# S3_SECRET_ACCESS_KEY: ''
# GRAPHQL_HIDE_NODE_TYPES: false
# GRAPHQL_HIDE_FLAT_TYPES: false
# GRAPHQL_FLAT_POSTFIX: "Flat"
# GRAPHQL_NODE_POSTFIX: ""
# GRAPHQL_PREFIX_FOR_TABLES: ""
# GRAPHQL_PREFIX_FOR_COMMON: ""