-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (42 loc) · 881 Bytes
/
docker-compose.yml
File metadata and controls
46 lines (42 loc) · 881 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
services:
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
ports:
- "${RABBITMQ_PORT:-5672}:5672"
- "15672:15672"
env_file:
- .env
db:
image: postgres:17
ports:
- "5432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_HOST_AUTH_METHOD=trust
backend:
build:
context: .
dockerfile: ./Dockerfile.backend
ports:
- "3000:3000"
env_file:
- .env.development
cache:
image: valkey/valkey:8.1.4
ports:
- "${VALKEY_PORT:-6379}:6379"
env_file:
- .env
networks:
- default
serveless:
image: denoland/deno:2.5.3
working_dir: /app
ports:
- "${SERVERLESS_PORT:-8000}:8000"
volumes:
- ./edge-function:/app
env_file:
- .env
command: deno run --allow-net --allow-env --allow-read index.ts