2023-09-26 11:54:38 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
2023-09-29 11:06:17 +00:00
|
|
|
elementweb:
|
2023-11-23 08:45:27 +00:00
|
|
|
image: vectorim/element-web:${ELEMENT_VERSION}
|
2023-09-26 11:54:38 +00:00
|
|
|
restart: unless-stopped
|
2023-10-02 13:05:56 +00:00
|
|
|
volumes:
|
|
|
|
- ./config.json:/app/config.json
|
2023-09-26 11:54:38 +00:00
|
|
|
ports:
|
2023-10-02 08:45:47 +00:00
|
|
|
- "8008:80/tcp"
|
2023-09-26 11:54:38 +00:00
|
|
|
|
2023-09-29 11:06:17 +00:00
|
|
|
nginx:
|
|
|
|
image: nginx:${NGINX_VERSION}
|
2023-09-26 11:54:38 +00:00
|
|
|
ports:
|
2023-09-29 11:06:17 +00:00
|
|
|
- "80:80/tcp"
|
|
|
|
- "443:443/tcp"
|
2023-09-26 11:54:38 +00:00
|
|
|
volumes:
|
2023-09-29 11:06:17 +00:00
|
|
|
- ./nginx:/etc/nginx/conf.d
|
|
|
|
- /ssl:/ssl
|
2023-10-02 08:45:47 +00:00
|
|
|
- /www:/www
|
2023-12-04 09:16:33 +00:00
|
|
|
- /mnt/logs/nginx:/var/log/nginx/
|