diff --git a/docs/deploying/docker-compose.for-traefik.yml b/docs/deploying/docker-compose.for-traefik.yml index 369d6eb64..44f569f8c 100644 --- a/docs/deploying/docker-compose.for-traefik.yml +++ b/docs/deploying/docker-compose.for-traefik.yml @@ -6,6 +6,7 @@ services: ### then you are ready to go. image: forgejo.ellis.link/continuwuation/continuwuity:latest restart: unless-stopped + command: /sbin/conduwuit volumes: - db:/var/lib/continuwuity #- ./continuwuity.toml:/etc/continuwuity.toml diff --git a/docs/deploying/docker-compose.with-caddy.yml b/docs/deploying/docker-compose.with-caddy.yml index 92594f5d8..40cd88316 100644 --- a/docs/deploying/docker-compose.with-caddy.yml +++ b/docs/deploying/docker-compose.with-caddy.yml @@ -23,6 +23,7 @@ services: ### then you are ready to go. image: forgejo.ellis.link/continuwuation/continuwuity:latest restart: unless-stopped + command: /sbin/conduwuit volumes: - db:/var/lib/continuwuity - /etc/resolv.conf:/etc/resolv.conf:ro # Use the host's DNS resolver rather than Docker's. diff --git a/docs/deploying/docker-compose.with-traefik.yml b/docs/deploying/docker-compose.with-traefik.yml index a68703714..c951f36bb 100644 --- a/docs/deploying/docker-compose.with-traefik.yml +++ b/docs/deploying/docker-compose.with-traefik.yml @@ -6,6 +6,7 @@ services: ### then you are ready to go. image: forgejo.ellis.link/continuwuation/continuwuity:latest restart: unless-stopped + command: /sbin/conduwuit volumes: - db:/var/lib/continuwuity - /etc/resolv.conf:/etc/resolv.conf:ro # Use the host's DNS resolver rather than Docker's. diff --git a/docs/deploying/docker-compose.yml b/docs/deploying/docker-compose.yml index fbb50e35a..a15f9241c 100644 --- a/docs/deploying/docker-compose.yml +++ b/docs/deploying/docker-compose.yml @@ -6,6 +6,7 @@ services: ### then you are ready to go. image: forgejo.ellis.link/continuwuation/continuwuity:latest restart: unless-stopped + command: /sbin/conduwuit ports: - 8448:6167 volumes: diff --git a/docs/deploying/docker.mdx b/docs/deploying/docker.mdx index c32607787..68f8da4e8 100644 --- a/docs/deploying/docker.mdx +++ b/docs/deploying/docker.mdx @@ -78,7 +78,7 @@ docker run -d \ -e CONTINUWUITY_ALLOW_REGISTRATION="false" \ --name continuwuity \ forgejo.ellis.link/continuwuation/continuwuity:latest \ - --execute "users create-user admin" + /sbin/conduwuit --execute "users create-user admin" ``` Replace `matrix.example.com` with your actual server name and `admin` with @@ -141,7 +141,7 @@ compose file, add under the `continuwuity` service: services: continuwuity: image: forgejo.ellis.link/continuwuation/continuwuity:latest - command: --execute "users create-user admin" + command: /sbin/conduwuit --execute "users create-user admin" # ... rest of configuration ``` diff --git a/docs/deploying/kubernetes.mdx b/docs/deploying/kubernetes.mdx index 8635bac31..458744507 100644 --- a/docs/deploying/kubernetes.mdx +++ b/docs/deploying/kubernetes.mdx @@ -39,6 +39,7 @@ spec: - name: continuwuity # use a sha hash <3 image: forgejo.ellis.link/continuwuation/continuwuity:latest + command: ["/sbin/conduwuit"] imagePullPolicy: IfNotPresent ports: - name: http