https://github.com/alonsodomin/docker-upsource
UpSource Docker Container
https://github.com/alonsodomin/docker-upsource
Last synced: 2 months ago
JSON representation
UpSource Docker Container
- Host: GitHub
- URL: https://github.com/alonsodomin/docker-upsource
- Owner: alonsodomin
- License: apache-2.0
- Created: 2015-06-01T17:14:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-15T13:15:00.000Z (over 8 years ago)
- Last Synced: 2025-01-04T21:45:27.552Z (4 months ago)
- Language: Makefile
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-upsource
[UpSource](https://www.jetbrains.com/upsource) Docker Container
## Starting the container
The following command will start an UpSource instance on port 8080.
```
docker run -d --name some_upsource -p 8080:8080 alonsodomin/upsource
```After starting the container you should go to URL `http://:8080` and finish
the installation/configuration.## Preserving state
All UpSource's state is written to disk at `/var/lib/upsource`, this folder
is also expose as a volume so it can be mounted from outside the container.```
docker run -d --name some_upsource -p 8080:8080 -v /persistent/store:/var/lib/upsource alonsodomin/upsource
```