From 624ff08a074348486e352d723af1a7f0ebf76e48 Mon Sep 17 00:00:00 2001 From: Daniel Wiesenberg Date: Thu, 23 Jul 2020 23:58:08 +0200 Subject: 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" --- docker-compose.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docker-compose.yml (limited to 'docker-compose.yml') 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: -- cgit v1.2.3