forked from istopwg/ippsample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
40 lines (37 loc) · 919 Bytes
/
docker-compose.yml
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
version: '2.1'
services:
ippserver:
hostname: ippserver
build:
context: .
dockerfile: Dockerfile
volumes:
- './test:/config'
- './data/print:/print'
- './data/spool:/spool'
- './data/tools:/tools'
command: ippserver -C /config -r _print
ippfind:
build:
context: .
dockerfile: Dockerfile
command: ippfind
depends_on:
- "ippserver"
ipptest:
build:
context: .
dockerfile: Dockerfile
volumes:
- './examples:/examples'
working_dir: /examples
command: ipptool -V 2.0 -tf document-letter.pdf ipp://ippserver.local:8991/ipp/print/foo ipp-everywhere.test
depends_on:
- "ippserver"
ippproxy:
build:
context: .
dockerfile: Dockerfile
command: ippproxy -d ipp://ippserver.local:8991/ipp/print/foo ipp://ippserver.local:8991/ipp/print/bar
depends_on:
- "ippserver"