-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompose.yaml
108 lines (108 loc) · 2.29 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: "scouting_app"
version: 1.0.0
services:
server:
restart: on-failure
build:
context: .
dockerfile: Dockerfile
target: production
depends_on:
couchdb:
condition: service_healthy
couch-db-setup:
condition: service_completed_successfully
ports:
- "3000:3000"
links:
- couchdb:couchdb
environment:
couchDBHostname: couchdb
networks:
- intercom_network
devserver:
restart: on-failure
build:
context: .
dockerfile: Dockerfile
target: development
develop:
watch:
- path: .
action: sync
target: /usr/src/nuxt3-app
ignore:
- node_modules
- .npmrc
- .gitignore
- compose.yaml
- Dockerfile
- README.md
- .nuxt
- .output
- .idea
- .output
- .data
- .nuxt
- .nitro
- .cache
- dist
- path: testServer.js
action: rebuild
target: /usr/src/nuxt3-app/testServer.js
- path: package.json
action: rebuild
- path: Dockerfile
action: rebuild
depends_on:
couchdb:
condition: service_healthy
couch-db-setup:
condition: service_completed_successfully
ports:
- "3000:3000"
links:
- couchdb:couchdb
environment:
couchDBHostname: couchdb
networks:
- intercom_network
couchdb:
restart: on-failure
expose:
- '5984'
ports:
- '5984:5984'
# - '4369:4369'
# - '9100:9100'
environment:
- COUCHDB_USER=admin
- COUCHDB_PASSWORD=password
image: 'couchdb:3'
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5984"]
interval: 10s
timeout: 3s
retries: 5
networks:
- intercom_network
volumes:
- couchDB:/opt/couchdb/data
couch-db-setup:
restart: no
depends_on:
couchdb:
condition: service_healthy
build:
context: .
target: setup
dockerfile: ./Dockerfile
network_mode: service:couchdb
networks:
intercom_network:
name: intercom
external: false
volumes:
couchDB:
driver: local
name: CouchDB-Volume