-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (35 loc) · 1.1 KB
/
docker-compose.yml
File metadata and controls
37 lines (35 loc) · 1.1 KB
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
32
33
34
35
36
37
services:
web:
image: ghcr.io/smgdkngt/dobase:latest
ports:
- "3000:80"
environment:
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
- APP_NAME=${APP_NAME:-Dobase}
- APP_HOST=${APP_HOST:-localhost:3000}
- APP_FROM_EMAIL=${APP_FROM_EMAIL:-notifications@dobase.co}
- SMTP_ADDRESS=${SMTP_ADDRESS:-}
- SMTP_PORT=${SMTP_PORT:-587}
- SMTP_USERNAME=${SMTP_USERNAME:-}
- SMTP_PASSWORD=${SMTP_PASSWORD:-}
# Optional: uncomment to enable the Room (video) tool.
# LIVEKIT_URL must be the public URL browsers connect to.
# - LIVEKIT_URL=wss://room.your-domain.com
# - LIVEKIT_API_KEY=devkey
# - LIVEKIT_API_SECRET=devsecret
volumes:
- storage:/rails/storage
restart: unless-stopped
# Optional: LiveKit server for the Room (video) tool.
# Uncomment above env vars and this service to enable video conferencing.
#
# livekit:
# image: livekit/livekit-server:latest
# ports:
# - "7880:7880"
# - "7881:7881"
# environment:
# - LIVEKIT_KEYS=devkey:devsecret
# restart: unless-stopped
volumes:
storage: