23 lines
497 B
YAML
23 lines
497 B
YAML
version: '3'
|
|
services:
|
|
elementweb:
|
|
image: vectorim/element-web:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
- SERVERNAME=${homeServerFQDN}
|
|
- PUBLICBASEURL=${synapseFQDN}
|
|
- ELEMENTWEB=${elementWebFQDN}
|
|
volumes:
|
|
- ./config.json:/app/config.json
|
|
ports:
|
|
- "8008:80/tcp"
|
|
|
|
nginx:
|
|
image: nginx:${NGINX_VERSION}
|
|
ports:
|
|
- "80:80/tcp"
|
|
- "443:443/tcp"
|
|
volumes:
|
|
- ./nginx:/etc/nginx/conf.d
|
|
- /ssl:/ssl
|
|
- /www:/www
|