-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
49 lines (47 loc) · 978 Bytes
/
docker-compose.yml
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
version: '3.3'
services:
db:
image: postgis/postgis:15-3.4
ports:
- '5432:5432'
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=esa_cms
volumes:
- pgdata:/var/lib/postgresql/data
cms:
build:
context: .
dockerfile: cms/Dockerfile
ports:
- '1337:1337'
env_file:
- ./cms/.env
environment:
- NODE_ENV=${NODE_ENV:-development}
links:
- db
depends_on:
- db
volumes:
- ./cms:/app/cms
- /app/cms/src/plugins/map-field/node_modules
- /app/cms/src/plugins/map-field/dist
client:
build:
context: .
dockerfile: client/Dockerfile
ports:
- '3000:3000'
env_file:
- ./client/.env.local
environment:
- NEXT_PUBLIC_API_URL=http://localhost:1337/api
- NODE_ENV=${NODE_ENV:-development}
links:
- cms
volumes:
- ./client:/app/client
volumes:
pgdata: