20 lines
421 B
YAML
20 lines
421 B
YAML
version: '3'
|
|
services:
|
|
elementweb:
|
|
image: vectorim/element-web:${ELEMENT_VERSION}
|
|
restart: unless-stopped
|
|
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
|
|
- /mnt/logs/nginx:/var/log/nginx/
|