21 lines
439 B
YAML
21 lines
439 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: ./app
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3333:3333"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./app:/usr/src/app
|
|
- /usr/src/app/node_modules
|
|
restart: unless-stopped
|
|
|
|
# MailHog for local email testing and development
|
|
mailhog:
|
|
image: mailhog/mailhog:latest
|
|
ports:
|
|
- "1025:1025" # SMTP server
|
|
- "8025:8025" # Web UI
|
|
restart: unless-stopped |