-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
37 lines (35 loc) · 890 Bytes
/
docker-compose.dev.yml
File metadata and controls
37 lines (35 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
services:
close-powerlifting:
container_name: close-powerlifting
restart: unless-stopped
init: true
build:
context: ./
dockerfile: ./Dockerfile.dev
ports:
- "${APP_PORT}:${APP_PORT}"
volumes:
- ./:/usr/src/app
- /usr/src/app/node_modules
environment:
CHOKIDAR_USEPOLLING: "true"
DOCKER_CONTAINER: "true"
depends_on:
- mailpit
networks:
- close-powerlifting-network
mailpit:
container_name: close-powerlifting-mailpit
restart: unless-stopped
image: axllent/mailpit@sha256:0b5c5f7ffd3c93474baa7fd3869c1462e5a3d03256ed0933dfc0e7d81d794036
ports:
- "8025:8025"
- "1025:1025"
environment:
MP_SMTP_AUTH_ACCEPT_ANY: 1
MP_SMTP_AUTH_ALLOW_INSECURE: 1
networks:
- close-powerlifting-network
networks:
close-powerlifting-network:
driver: bridge