summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-11-25 20:11:27 +0100
committerDaniel Weipert <code@drogueronin.de>2023-11-25 20:11:27 +0100
commita65b12797c73a4b0be6f2e73a805d476a1581e95 (patch)
tree4f8fbde882917941bba45d689b17e8d533eb190e /docker-compose.yml
initial commit
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..f2b177c
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,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"]