forked from drlippman/IMathAS-Extras
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (38 loc) · 809 Bytes
/
docker-compose.yml
File metadata and controls
48 lines (38 loc) · 809 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
services:
pandoc:
build:
context: ./
dockerfile: docker/Dockerfile-pandoc
expose:
- 80
ports:
- "8081:80"
volumes:
- pandoc-temp-datatmp:/var/www/datatmp
- pandoc-temp-imgs:/var/www/html/imgs
hostname: pandoc
domainname: example.com
restart: unless-stopped
privileged: true
stdin_open: false
tty: false
livepoll:
build:
context: ./
dockerfile: docker/Dockerfile-livepoll
expose:
- 80
ports:
- "8082:3000"
hostname: livepoll
domainname: example.com
restart: unless-stopped
privileged: true
stdin_open: false
tty: false
environment:
LIVEPOLL_PASSWORD: testing
LIVEPOLL_USE_INSECURE_HTTP: true
volumes:
pandoc-temp-datatmp:
pandoc-temp-imgs: