File tree Expand file tree Collapse file tree 3 files changed +43
-0
lines changed
Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,7 @@ A collection of delicious docker recipes.
257257
258258## 3rd-party
259259
260+ - [x] docker.bintray.io/jfrog/artifactory-oss
260261- [x] tutum/builder
261262- [x] browserless/chrome
262263- [x] certbot
Original file line number Diff line number Diff line change 1+ artifactory
2+ ===========
3+
4+ [ JFrog Artifactory] [ 1 ] is the only Universal Repository Manager supporting all major
5+ packaging formats, build tools and CI servers.
6+
7+ [ 1 ] : https://www.jfrog.com/confluence/display/RTF/Welcome+to+Artifactory
Original file line number Diff line number Diff line change 1+ #
2+ # https://www.jfrog.com/confluence/display/RTF/Installing+with+Docker
3+ #
4+
5+ version : " 3.7"
6+
7+ services :
8+
9+ postgres :
10+ image : postgres:12-alpine
11+ ports :
12+ - " 5432:5432"
13+ volumes :
14+ - ./data/postgres:/var/lib/postgresql/data
15+ environment :
16+ - POSTGRES_DB=artifactory
17+ - POSTGRES_USER=artifactory
18+ - POSTGRES_PASSWORD=artifactory
19+ restart : always
20+
21+ artifactory :
22+ image : docker.bintray.io/jfrog/artifactory-oss:6.13.1
23+ ports :
24+ - " 8081:8081"
25+ volumes :
26+ - ./data/artifactory:/var/opt/jfrog/artifactory
27+ environment :
28+ - DB_TYPE=postgresql
29+ - DB_HOST=postgres
30+ - DB_USER=artifactory
31+ - DB_PASSWORD=artifactory
32+ - EXTRA_JAVA_OPTIONS=-Xms512m -Xmx2g -Xss256k -XX:+UseG1GC
33+ depends_on :
34+ - postgres
35+ restart : always
You can’t perform that action at this time.
0 commit comments