File size: 285 Bytes
f8a4c02 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
version: '2'
services:
web:
build:
context: .
ports:
- "8080:8080"
environment:
- [email protected]
- MAIL_PASSWORD=rdyuwlebtveybfae
nginx:
restart: always
build: ./nginx/
ports:
- "80:80"
links:
- web
|