blob: 7fe8fe0136f85174cf67f12bb08ea7a17122f285 (
plain)
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
|
services:
gotenberg:
image: "gotenberg/gotenberg:8"
print:
build:
context: print
depends_on:
- "gotenberg"
volumes:
- "./print:/var/www/html"
php:
image: php:fpm-alpine
volumes:
- "./web:/var/www/html"
- "./print:/var/www/html/print"
web:
build:
context: web
depends_on:
- "gotenberg"
- "php"
ports:
- "8080:80"
volumes:
- "./web:/var/www/html"
- "./print:/var/www/html/print"
|