summaryrefslogtreecommitdiff
path: root/stacks/tsk/compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'stacks/tsk/compose.yml')
-rw-r--r--stacks/tsk/compose.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/stacks/tsk/compose.yml b/stacks/tsk/compose.yml
new file mode 100644
index 0000000..e9b97ea
--- /dev/null
+++ b/stacks/tsk/compose.yml
@@ -0,0 +1,22 @@
+networks:
+ edge-net:
+ name: ${EDGE_NET}
+ external: true
+ db-net:
+ name: ${DB_NET}
+ external: true
+
+services:
+ tsk:
+ image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server-postgres:latest
+ restart: unless-stopped
+ environment:
+ RUST_LOG: info
+ LISTEN: 0.0.0.0:80
+ env_file:
+ - ${SECRET}/env/tsk.env
+ networks:
+ - edge-net
+ - db-net
+ expose:
+ - 8080