summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..91626dd
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,21 @@
+# Conduit
+version: '3'
+
+services:
+ conduit:
+ image: conduit_homeserver
+ restart: unless-stopped
+ ports:
+ - 14004:14004
+ volumes:
+ - db:/data/sled
+ environment:
+ ROCKET_SERVER_NAME: example.com # replace with your own name
+ ### Uncomment and change values as needed
+ #ROCKET_LOG: normal
+ #ROCKET_REGISTRATION_DISABLED: 'true'
+ #ROCKET_DATABASE_PATH: /data/sled
+ #ROCKET_WORKERS: 10
+
+volumes:
+ db: