docker-compose.yml 291 B

12345678910111213
  1. version: '3'
  2. services:
  3. web:
  4. image: nginx:1.12-alpine
  5. container_name: ${CONTAINER_NAME}
  6. restart: "no"
  7. ports:
  8. - "8380:80"
  9. volumes:
  10. - ${DATA_ROOT}/element-web:/usr/share/nginx/html/
  11. - ${DATA_ROOT}/config/config.json:/usr/share/nginx/html/config.json