docker-compose environment for the entire v.st system
https://v.st/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:13.4-alpine
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ../data/matrix/postgresdata:/var/lib/postgresql/data
|
|
|
|
environment:
|
|
|
|
- POSTGRES_DB=synapse
|
|
|
|
- POSTGRES_USER=synapse
|
|
|
|
- POSTGRES_PASSWORD=STRONGPASSWORD
|
|
|
|
|
|
|
|
element:
|
|
|
|
image: vectorim/element-web:latest
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ./element-config.json:/app/config.json
|
|
|
|
ports:
|
|
|
|
- "5000:80"
|
|
|
|
|
|
|
|
synapse:
|
|
|
|
image: matrixdotorg/synapse:latest
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ../data/matrix/synapse:/data
|
|
|
|
ports:
|
|
|
|
- "5008:8008"
|