-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
37 lines (37 loc) · 906 Bytes
/
docker-compose.yml
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:
web:
build:
context: .
dockerfile: ./docker/Dockerfile.dev
tags:
- thomascode92/crwn-clothing:dev
image: thomascode92/crwn-clothing:dev
env_file:
- ./env/.env
- ./env/.env.local
ports:
- "3000:5173"
volumes:
- ./src:/usr/app/src
- /usr/app/node_modules
container_name: crwn-clothing
emulator:
build:
context: .
dockerfile: ./docker/Dockerfile.firebase
tags:
- thomascode92/firebase-emulator
image: thomascode92/firebase-emulator
env_file:
- ./env/.env
- ./env/.env.local
ports:
- "4000:4001" # ui
- "4600:4601" # logging
- "9099:9100" # auth
- "8080:8081" # firestore
volumes:
- ./firebase:/srv/firebase:rw
- ./cache:/root/.cache/:rw
- ./firebase/data:/srv/firebase/data:rw
container_name: firebase-emulator