-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.dev64.yml
More file actions
52 lines (48 loc) · 1021 Bytes
/
docker-compose.dev64.yml
File metadata and controls
52 lines (48 loc) · 1021 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
version: '3'
services:
mongo:
container_name: mongo
image: arm64v8/mongo
ports:
- "27017:27017"
env_file:
- .env
frontend:
container_name: $DOCKER_IMAGE_FRONTEND
image: $DOCKER_IMAGE_FRONTEND
build:
context: ./frontend
dockerfile: Dockerfile.arm64
args:
FRONTEND_ENV: dev
depends_on:
- backend
ports:
- "80:80"
backend:
container_name: $DOCKER_IMAGE_BACKEND
image: $DOCKER_IMAGE_BACKEND
env_file:
- .env
depends_on:
- mongo
build:
context: ./backend
dockerfile: Dockerfile.arm64
ports:
- "8001:8001"
celeryworker:
container_name: $DOCKER_IMAGE_CELERYWORKER
image: $DOCKER_IMAGE_CELERYWORKER
depends_on:
- mongo
env_file:
- .env
volumes:
- ./backend/app:/code/app
environment:
- SERVER_NAME=${DOMAIN}
- SERVER_HOST=https://${DOMAIN}
build:
context: ./backend
dockerfile: celeryworker.arm64dockerfile