summaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: 6f6d28f5d6c1b58c7daa09abdbbc4251345da537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
services:
  gotenberg:
    image: "gotenberg/gotenberg:8"

  php:
    image: php:fpm-alpine
    volumes:
      - "web:/var/www/html"

  web:
    image: mtg-print-web
    depends_on:
      - "gotenberg"
      - "php"
    volumes:
      - "web:/var/www/html"


volumes:
  web: