From 169a744afef58a1fbfa62b4ae36a827082cb8d1d Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 21 May 2023 13:54:11 +0200 Subject: [PATCH] add appsmith/docker-compose.yml --- appsmith/docker-compose.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 appsmith/docker-compose.yml diff --git a/appsmith/docker-compose.yml b/appsmith/docker-compose.yml new file mode 100644 index 0000000..9e32a19 --- /dev/null +++ b/appsmith/docker-compose.yml @@ -0,0 +1,27 @@ +version: "3" + +services: + appsmith: + image: index.docker.io/appsmith/appsmith-ce + container_name: appsmith + ports: + - "8884:80" + - "8885:443" + volumes: + - ./stacks:/appsmith-stacks + restart: unless-stopped + # Uncomment the lines below to enable auto-update + #labels: + # com.centurylinklabs.watchtower.enable: "true" + + #auto_update: + # image: containrrr/watchtower + # volumes: + # - /var/run/docker.sock:/var/run/docker.sock + # # Update check interval in seconds. + # command: --schedule "0 0 * ? * *" --label-enable --cleanup + # restart: unless-stopped + # depends_on: + # - appsmith + # environment: + # - WATCHTOWER_LIFECYCLE_HOOKS=true