Skip to content

Commit 6bb55c8

Browse files
committed
add artifactory
1 parent d0374f3 commit 6bb55c8

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

artifactory/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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

artifactory/docker-compose.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

0 commit comments

Comments
 (0)