Artifactory: Difference between revisions
Jump to navigation
Jump to search
(→Docker) |
|||
Line 123: | Line 123: | ||
==References== | ==References== | ||
{| | |||
| valign="top" | | |||
* [https://jfrog.com/knowledge-base/how-to-remove-artifactory-from-the-context-url-in-artifactory-7/ Remove artifactory from the Context URL] | * [https://jfrog.com/knowledge-base/how-to-remove-artifactory-from-the-context-url-in-artifactory-7/ Remove artifactory from the Context URL] | ||
* [https://www.jfrog.com/confluence/display/JFROG/Installing+Artifactory#InstallingArtifactory-DockerInstallation Installing Artifactory Docker Installation] | * [https://www.jfrog.com/confluence/display/JFROG/Installing+Artifactory#InstallingArtifactory-DockerInstallation Installing Artifactory Docker Installation] | ||
Line 128: | Line 130: | ||
* [https://www.jfrog.com/confluence/display/RTF6X/Configuring+a+Reverse+Proxy Configuring a Reverse Proxy] | * [https://www.jfrog.com/confluence/display/RTF6X/Configuring+a+Reverse+Proxy Configuring a Reverse Proxy] | ||
* [https://github.com/jfrog/artifactory-docker-examples Artifactory Docker Examples] | * [https://github.com/jfrog/artifactory-docker-examples Artifactory Docker Examples] | ||
---- | |||
* [https://docs.docker.com/engine/reference/commandline/volume_create/ Docker volume create] | * [https://docs.docker.com/engine/reference/commandline/volume_create/ Docker volume create] | ||
* [https://www.jfrog.com/confluence/display/RTF/Installing+with+Docker Installing with Docker] | * [https://www.jfrog.com/confluence/display/RTF/Installing+with+Docker Installing with Docker] | ||
* [https://www.jfrog.com/confluence/display/RTF4X/Running+with+Docker Running with Docker] | * [https://www.jfrog.com/confluence/display/RTF4X/Running+with+Docker Running with Docker] | ||
| valign="top" | | |||
* [https://bintray.com/jfrog/product/JFrog-Artifactory-Oss/view JFrog Artifactory Community Edition] | |||
|} |
Revision as of 08:44, 29 August 2020
Linux: export JFROG_HOME=/srv/jfrog |
MacOS: export JFROG_HOME=$HOME/jfrog |
Local location | Container location | Usage |
---|---|---|
$JFROG_HOME/artifactory7/var/ |
/var/opt/jfrog/artifactory |
For storing artifactory data |
docker run -it --rm \
--publish 9040:8081 \
--publish 9041:8082 \
docker.bintray.io/jfrog/artifactory-oss:7.6.3 \
bin/bash
id; exit
mkdir -p $JFROG_HOME/artifactory7/var/etc/
touch $JFROG_HOME/artifactory7/var/etc/system.yaml
chown -R 1030:1030 $JFROG_HOME/artifactory7/var
Docker
Debian
docker run --detach \
--publish 9040:8081 \
--publish 9041:8082 \
--name artifactory \
--restart always \
--volume $JFROG_HOME/artifactory7/var/:/var/opt/jfrog/artifactory \
docker.bintray.io/jfrog/artifactory-oss:7.6.3
CentOS
docker run --detach \
--publish 9040:8081 \
--publish 9041:8082 \
--name artifactory \
--restart always \
--volume $JFROG_HOME/artifactory7/var/:/var/opt/jfrog/artifactory:Z \
docker.bintray.io/jfrog/artifactory-oss:7.6.3
Apache
Debian
vim /etc/apache2/sites-enabled/01-cid.chorke.org-le-ssl.conf
<IfModule mod_ssl.c>
<VirtualHost *:443>
SSLProxyEngine On
ProxyRequests Off
SSLProxyVerify None
ProxyPreserveHost On
AllowEncodedSlashes On
SSLProxyCheckPeerCN Off
SSLProxyCheckPeerName Off
SSLProxyCheckPeerExpire Off
# more others config skipped
<Location /ui>
Order Allow,Deny
Allow from all
ProxyPass http://localhost:9041/ui nocanon
ProxyPassReverse http://localhost:9041/ui
</Location>
<Location /artifactory>
Order Allow,Deny
Allow from all
ProxyPass http://localhost:9040/artifactory nocanon
ProxyPassReverse http://localhost:9040/artifactory
</Location>
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/cid.chorke.org/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/cid.chorke.org/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/cid.chorke.org/chain.pem
</VirtualHost>
</IfModule>
apachectl -t
systemctl reload httpd
systemctl restart httpd
# http://cid.chorke.org/artifactory/webapp/#/login@admin/password
To Run
docker exec -it artifactory bash
docker start artifactory
docker stop artifactory
docker logs artifactory
Knowledge
# filter and remove docker images, containers
docker rm $(docker ps --all -q -f status=dead)
docker rmi $(docker images -qa -f 'dangling=true')
docker rm artifactory && docker rmi docker.bintray.io/jfrog/artifactory-oss:4.1.0
# docker container debug, checking history & service
docker run --name='artifactory' -it docker.bintray.io/jfrog/artifactory-oss:4.1.0
docker history docker.bintray.io/jfrog/artifactory-oss:4.1.0
docker exec -it artifactory /bin/bash
docker exec -it artifactory bash
docker logs artifactory
service --status-all
References
|