-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
35 lines (30 loc) · 705 Bytes
/
compose.yml
File metadata and controls
35 lines (30 loc) · 705 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
# version: "3.9"
services:
backend_api:
build:
context: ./backend
target: api_prod
volumes:
- ./backend:/app
# ports:
# - "80:80"
backend_worker:
build:
context: ./backend
target: worker_prod
volumes:
- ./backend:/app
postgres:
container_name: "postgres"
# Works in dev - wait until terraform azurerm supports version 18 for postgres, then update stage & prod!
# image: postgres:18.0-alpine3.22
image: postgres:16.1-alpine
frontend_svelte:
build:
context: ./frontend_svelte
redis:
container_name: "redis"
image: redis:8.2.2-alpine3.22
command:
- /bin/sh
- /data/entrypoint.sh