-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (50 loc) · 1.08 KB
/
Copy pathdocker-compose.yml
File metadata and controls
52 lines (50 loc) · 1.08 KB
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
50
51
52
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.prod
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.prod
args:
NEXT_PUBLIC_MATOMO_URL: ${NEXT_PUBLIC_MATOMO_URL}
NEXT_PUBLIC_MATOMO_SITE_ID: ${NEXT_PUBLIC_MATOMO_SITE_ID}
ports:
- '3000:3000'
env_file:
- ./client/.env.local
environment:
- NEXT_PUBLIC_API_URL=http://localhost:1337/api
- NODE_ENV=production
links:
- cms
volumes:
- ./client:/app/client
volumes:
pgdata: