File tree Expand file tree Collapse file tree 3 files changed +29
-10
lines changed Expand file tree Collapse file tree 3 files changed +29
-10
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "name" : " Redmine" ,
3+ "dockerComposeFile" : " docker-compose.yml" ,
4+ "service" : " redmine" ,
5+ "workspaceFolder" : " /usr/src/redmine/plugins/view_customize"
6+ }
Original file line number Diff line number Diff line change 1+ services :
2+ redmine :
3+ image : redmine
4+ restart : always
5+ ports :
6+ - 8080:3000
7+ environment :
8+ REDMINE_DB_POSTGRES : db
9+ REDMINE_DB_PASSWORD : example
10+ volumes :
11+ - redmine-files:/usr/src/redmine/files
12+ - ./..:/usr/src/redmine/plugins/view_customize
13+ db :
14+ image : postgres:latest
15+ restart : unless-stopped
16+ volumes :
17+ - postgres-data:/var/lib/postgresql/data
18+ environment :
19+ POSTGRES_PASSWORD : example
20+ POSTGRES_DB : redmine
21+ volumes :
22+ redmine-files :
23+ postgres-data :
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments