Files
workavia-mail-front/docker-compose.yaml
T
Nguyen Thai 7fb0781980 Added compose file for quick local setup
Simplified the Dockerfile
Added compose docs to the README
2022-11-21 15:03:59 +07:00

29 lines
574 B
YAML

version: "3"
services:
tmail-frontend:
image: linagora/tmail-web:master
container_name: tmail-frontend
ports:
- "8080:80"
volumes:
- ./env.file:/usr/share/nginx/html/assets/env.file
networks:
- tmail
depends_on:
- tmail-backend
tmail-backend:
image: linagora/tmail-backend:memory-branch-master
container_name: tmail-backend
volumes:
- ./jwt_publickey:/root/conf/jwt_publickey
- ./jwt_privatekey:/root/conf/jwt_privatekey
ports:
- "80:80"
networks:
- tmail
networks:
tmail: