-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathdocker-compose.test.yml
More file actions
22 lines (21 loc) 路 715 Bytes
/
Copy pathdocker-compose.test.yml
File metadata and controls
22 lines (21 loc) 路 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# docker-compose.yml
services:
booklogr-api-test:
container_name: "booklogr-api-test"
build: .
environment:
- DATABASE_URL=sqlite:///books.db
- SINGLE_USER_MODE=true
ports:
- 5000:5000
volumes:
- ./data:/app/instance
booklogr-web-test:
container_name: "booklogr-web-test"
build: web
environment:
- BL_API_ENDPOINT=http://localhost:5000/ # CHANGE THIS TO POINT TO THE EXTERNAL ADRESS THE USER CAN ACCESS
- BL_GOOGLE_ID= # Leave empty to disable google login. To enable, write in your Google Client ID.
- BL_DEMO_MODE=false
ports:
- 5150:80