-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
39 lines (38 loc) · 834 Bytes
/
compose.yaml
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
services:
nextapp:
container_name: nextapp
image: francescoxx/nextapp:latest
build:
context: ./frontend
dockerfile: next.dockerfile
ports:
- 3000:3000
environment:
- NEXT_PUBLIC_API_URL=http://localhost:8080
depends_on:
- rustapp
rustapp:
container_name: rustapp
image: francescoxx/rustapp:latest
build:
context: ./backend
dockerfile: rust.dockerfile
args:
DATABASE_URL: postgres://postgres:postgres@db:5432/postgres
ports:
- 8080:8080
depends_on:
- db
db:
container_name: db
image: postgres:13
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: {}