-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.compose.yaml
More file actions
40 lines (39 loc) · 841 Bytes
/
.compose.yaml
File metadata and controls
40 lines (39 loc) · 841 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
version: '3.8'
services:
nextapp:
container_name: nextapp
image: nextapp:1.0.0
build:
context: ./frontend
dockerfile: next.dockerfile
ports:
- '3000:3000'
environment:
- NEXT_PUBLIC_API_URL=http://localhost:8000
depends_on:
- goapp
goapp:
container_name: goapp
image: goapp:1.0.0
build:
context: ./backend
dockerfile: go.dockerfile
environment:
DATABASE_URL: 'postgres://postgres:postgres@db:5432/postgres?sslmode=disable'
ports:
- '8000:8000'
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: {}