summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorDaniel Wiesenberg <weasy@hotmail.de>2020-08-04 22:04:27 +0200
committerDaniel Wiesenberg <weasy@hotmail.de>2020-08-11 15:38:24 +0200
commit7288010e555d7f7ccc20c4330634976e18d6fa77 (patch)
tree3b11550eca767c0131980edb6ed7dd1fc86f6e00 /docker
parent31c725660ff21b043008bb980fd6b12ebc43a8f2 (diff)
downloadconduit-7288010e555d7f7ccc20c4330634976e18d6fa77.zip
Move additional files into dedicated folder and make build the def...
...fault in the compose files.
Diffstat (limited to 'docker')
-rw-r--r--docker/docker-compose.override.traefik.yml22
-rw-r--r--docker/docker-compose.traefik.yml58
2 files changed, 80 insertions, 0 deletions
diff --git a/docker/docker-compose.override.traefik.yml b/docker/docker-compose.override.traefik.yml
new file mode 100644
index 0000000..2096d79
--- /dev/null
+++ b/docker/docker-compose.override.traefik.yml
@@ -0,0 +1,22 @@
+# Conduit - Traefik Reverse Proxy Labels
+version: '3'
+
+services:
+ homeserver:
+ labels:
+ - "traefik.enable=true"
+ - "traefik.docker.network=proxy" # Change this to the name of your Traefik docker proxy network
+
+ - "traefik.http.routers.to-conduit.rule=Host(`<SUBDOMAIN>.<DOMAIN>`)" # Change to the address on which Conduit is hosted
+ - "traefik.http.routers.to-conduit.tls=true"
+ - "traefik.http.routers.to-conduit.tls.certresolver=letsencrypt"
+
+ ### Uncomment this if you uncommented Element-Web App in the docker-compose.yml
+ # element-web:
+ # labels:
+ # - "traefik.enable=true"
+ # - "traefik.docker.network=proxy" # Change this to the name of your Traefik docker proxy network
+
+ # - "traefik.http.routers.to-element-web.rule=Host(`<SUBDOMAIN>.<DOMAIN>`)" # Change to the address on which Element-Web is hosted
+ # - "traefik.http.routers.to-element-web.tls=true"
+ # - "traefik.http.routers.to-element-web.tls.certresolver=letsencrypt"
diff --git a/docker/docker-compose.traefik.yml b/docker/docker-compose.traefik.yml
new file mode 100644
index 0000000..ad1dad8
--- /dev/null
+++ b/docker/docker-compose.traefik.yml
@@ -0,0 +1,58 @@
+# Conduit - Behind Traefik Reverse Proxy
+version: '3'
+
+services:
+ homeserver:
+ ### If you already built the Conduit image with 'docker build', then you can uncomment the
+ ### 'image' line and comment out the 'build' option.
+ # image: conduit_homeserver:latest
+ ### If you want meaningful labels in you built Conduit image, you should run docker-compose like this:
+ ### CREATED=$(date -u +'%Y-%m-%dT%H:%M:%SZ') VERSION=$(grep -m1 -o '[0-9].[0-9].[0-9]' Cargo.toml) docker-compose up -d
+ build:
+ context: .
+ args:
+ CREATED:
+ VERSION:
+ LOCAL: false
+ GIT_REF: HEAD
+ restart: unless-stopped
+ volumes:
+ - db:/srv/conduit/.local/share/conduit
+ ### Uncomment if you want to use Rocket.toml to configure Conduit
+ ### Note: Set env vars will override Rocket.toml values
+ # - ./Rocket.toml:/srv/conduit/Rocket.toml
+ networks:
+ - proxy
+ environment:
+ ROCKET_SERVER_NAME: localhost:8000 # replace with your own name
+ ### Uncomment and change values as desired
+ # ROCKET_LOG: normal # Available levels are: off, debug, normal, critical
+ # ROCKET_PORT: 8000
+ # ROCKET_REGISTRATION_DISABLED: 'true'
+ # ROCKET_ENCRYPTION_DISABLED: 'true'
+ # ROCKET_DATABASE_PATH: /srv/conduit/.local/share/conduit
+ # ROCKET_WORKERS: 10
+ # ROCKET_MAX_REQUEST_SIZE: 20_000_000 # in bytes, ~20 MB
+
+ ### Uncomment if you want to use your own Element-Web App.
+ ### Note: You need to provide a config.json for Element and you also need a second
+ ### Domain or Subdomain for the communication between Element and Conduit
+ ### Config-Docs: https://github.com/vector-im/element-web/blob/develop/docs/config.md
+ # element-web:
+ # image: vectorim/riot-web:latest
+ # restart: unless-stopped
+ # volumes:
+ # - ./element_config.json:/app/config.json
+ # networks:
+ # - proxy
+ # depends_on:
+ # - homeserver
+
+volumes:
+ db:
+
+networks:
+ # This is the network Traefik listens to, if you network has a different
+ # name, don't forget to change it here and in the docker-compose.override.yml
+ proxy:
+ external: true