summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorDaniel Wiesenberg <weasy666@gmail.com>2020-07-23 23:58:08 +0200
committerDaniel Wiesenberg <weasy@hotmail.de>2020-08-11 15:38:23 +0200
commit624ff08a074348486e352d723af1a7f0ebf76e48 (patch)
treeaabf245333b2f3a699e203237a4f3cd3dc529015 /docker-compose.yml
parent0f1e3d821452f4a22422ca5bb6c92829ed4edcd5 (diff)
downloadconduit-624ff08a074348486e352d723af1a7f0ebf76e48.zip
Initial docker files trinity
The image builds as is, but running it exits with: standard_init_linux.go:211: exec user process caused "no such file or directory"
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: