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