Skip to content

lynnchin/docker-upsource

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Upsource is a code review tool from JetBrains.

This is part of the learning process for creating a docker image with Upsource.

How to use the image

It is recommended to use a data container to persist the application data:

docker run --name upsource-data \
  -v /opt/Upsource/conf \
  -v /opt/Upsource/data \
  -v /opt/Upsource/logs \
  -v /opt/Upsource/backups \
  busybox chown -R 999: /opt/Upsource

Run Upsource container:

Command Description

docker run \
 --rm \
 -p [host_port:]:[container_port]
 --name upsource
 [docker_hub_url]:latest

Debug Mode

docker run --rm \ 
 --volumes-from upsource-data \
  -p 8080:8080 --name upsource lynnc/docker-upsource:latest

Production Mode

docker run -d --rm \ 
 --volumes-from upsource-data \
  -p 8080:8080 --name upsource lynnc/docker-upsource:latest

Open up URL: http://localhost:8080/ to start Upsource configuration

About

This is part of the learning process for myself on setting up Upsource with Docker.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published