-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdocker-compose-local.yml
More file actions
25 lines (25 loc) · 837 Bytes
/
docker-compose-local.yml
File metadata and controls
25 lines (25 loc) · 837 Bytes
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
version: "3"
services:
node-bootstrap:
image: aceberg/node-bootstrap
restart: unless-stopped
ports:
- 8850:8850
volumes:
- ~/.dockerdata/icons:/app/icons # For local icons
exdiary:
image: aceberg/exercisediary
restart: unless-stopped
ports:
- 8851:8851
command: "-n http://YOUR_IP:8850" # Put your server IP or DNS name here
depends_on:
- node-bootstrap
volumes:
- ~/.dockerdata/ExerciseDiary:/data/ExerciseDiary # app data (set your own path instead of dockerdata)
environment:
TZ: Asia/Novosibirsk # required, default ""
HOST: "0.0.0.0" # optional, default: 0.0.0.0
PORT: "8851" # optional, default: 8851
THEME: "grass" # optional, default: grass
COLOR: "light" # optional, default: light