This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/docker-compose.social.yml
2023-03-16 01:11:09 +01:00

42 lines
No EOL
905 B
YAML

version: '2.2'
services:
dendrite:
image: matrixdotorg/dendrite-monolith:latest
command: [
"--config=/etc/dendrite/dendrite.yml"
]
volumes:
- /srv/dendrite/config:/etc/dendrite
- /srv/dendrite/data:/var/dendrite/media
depends_on:
- dendrite-pg
networks:
- proxy
- internal
dendrite-pg:
image: postgres:14
environment:
- POSTGRES_USER=dendrite
- POSTGRES_PASSWORD=dendrite
healthcheck:
test: ["CMD-SHELL", "pg_isready -U dendrite"]
interval: 5s
timeout: 5s
retries: 5
volumes:
- /srv/dentrite/other/database:/var/lib/postgresql/data
networks:
- internal
troddit:
image: bsyed/troddit
env_file: env/troddit.env
environment:
- LETSENCRYPT_HOST=red.neo.ixvd.net
- VIRTUAL_HOST=red.neo.ixvd.net
- VIRTUAL_PORT=3000
networks:
- proxy