Skip to content

Commit f619244

Browse files
committed
add docker compose for couchbase
1 parent ff9511f commit f619244

5 files changed

Lines changed: 647 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
services:
2+
lucee:
3+
image: lucee/lucee:7.0.0.299-SNAPSHOT
4+
volumes:
5+
- "./www:/var/www"
6+
- "./lucee-config.json:/opt/lucee/server/lucee-server/context/.CFConfig.json"
7+
ports:
8+
- 8888:8888
9+
depends_on:
10+
- couchbase
11+
environment:
12+
- COUCHBASE_HOST=couchbase
13+
- COUCHBASE_PORT=8091
14+
- LUCEE_ADMIN_PASSWORD=password123
15+
16+
couchbase:
17+
image: couchbase:community-7.2.4
18+
ports:
19+
- "8091-8096:8091-8096"
20+
- "11210:11210"
21+
volumes:
22+
- couchbase_data:/opt/couchbase/var
23+
24+
volumes:
25+
couchbase_data:

0 commit comments

Comments
 (0)