2022-07-02 13:23:53 -05:00
|
|
|
version: '3.1'
|
|
|
|
|
|
|
|
# Default Docker Stack/Compose configuration for Purr.
|
|
|
|
# You will need to change all instances of "REPLACEME" with the appropriate details.
|
2022-07-05 20:11:41 -05:00
|
|
|
# Additionally, you may want to update the host port definitions for each service.
|
2022-07-02 13:23:53 -05:00
|
|
|
|
|
|
|
services:
|
2022-07-05 20:11:41 -05:00
|
|
|
couchdb:
|
|
|
|
image: couchdb:3.2.2
|
2022-07-02 13:23:53 -05:00
|
|
|
ports:
|
2022-07-05 20:11:41 -05:00
|
|
|
- 5984:5984
|
2022-07-02 13:23:53 -05:00
|
|
|
volumes:
|
2022-07-05 20:11:41 -05:00
|
|
|
- ./data:/opt/couchdb/data
|
2022-07-02 13:23:53 -05:00
|
|
|
networks:
|
|
|
|
- webnet
|
|
|
|
environment:
|
2022-07-05 20:11:41 -05:00
|
|
|
COUCHDB_USER: REPLACEME
|
|
|
|
COUCHDB_PASSWORD: REPLACEME
|
2022-07-02 13:23:53 -05:00
|
|
|
|
|
|
|
purr:
|
|
|
|
image: purr
|
|
|
|
ports:
|
2022-07-05 20:11:41 -05:00
|
|
|
- 5195:3000
|
2022-07-02 13:23:53 -05:00
|
|
|
networks:
|
|
|
|
- webnet
|
|
|
|
depends_on:
|
2022-07-05 20:11:41 -05:00
|
|
|
- couchdb
|
2022-07-02 13:23:53 -05:00
|
|
|
|
|
|
|
networks:
|
|
|
|
webnet:
|