auditforge / backend /docker-compose.dev.yml
Kaballas's picture
initialize project structure with essential configurations and components
56b6519
raw
history blame
758 Bytes
version: '3'
services:
mongodb:
image: mongo:4.2.15
container_name: mongo-auditforge-dev
volumes:
- ./mongo-data-dev:/data/db
restart: always
ports:
- 127.0.0.1:27017:27017
environment:
- MONGO_DB:auditforge
networks:
- backend
auditforge-backend:
build:
context: .
dockerfile: Dockerfile.dev
image: auditforge:backend-dev
container_name: auditforge-backend-dev
volumes:
- ./src:/app/src
- ./ssl:/app/ssl
- ./report-templates:/app/report-templates
depends_on:
- mongodb
restart: always
ports:
- 5252:5252
links:
- mongodb
networks:
- backend
volumes:
mongo-data-dev:
networks:
backend:
driver: bridge