forked from Orcpub/orcpub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
32 lines (32 loc) · 824 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
32 lines (32 loc) · 824 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
32
---
version: '3'
services:
orcpub:
image: /malotv/latest
environment:
PORT: 8890
EMAIL_SERVER_URL: ''
EMAIL_ACCESS_KEY: ''
EMAIL_SECRET_KEY: ''
EMAIL_SERVER_PORT: 587
# Email address to send errors to
EMAIL_ERRORS_TO: ''
EMAIL_SSL: 'FALSE'
EMAIL_TLS: 'FALSE'
# Datomic connection string - Make sure the <change this> matches the DATOMIC_PASSWORD below
DATOMIC_URL: datomic:free://datomic:4334/orcpub?password=123
depends_on:
- datomic
restart: always
ports:
- 8890:8890
datomic:
image: orcpub/datomic:latest
environment:
ADMIN_PASSWORD: 123
# Must match the <change this> in the DATOMIC_URL above.
DATOMIC_PASSWORD: 123
volumes:
- ./data:/data
- ./logs:/logs
restart: always