blob: f2b177cdf222823fce350a23b76f9d7f8da27bb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
version: "3"
services:
gotenberg:
image: "gotenberg/gotenberg:7"
php:
image: "php"
links:
- "gotenberg"
environment:
- "DECKLIST=${DECKLIST}"
volumes:
- "./:/usr/src/app"
working_dir: "/usr/src/app"
command: ["php", "./index.php"]
|