Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onroerenderfgoed/atramhasis-demo-docker
A docker file containing a demo version of Atramhasis
https://github.com/onroerenderfgoed/atramhasis-demo-docker
demo docker pypi-package
Last synced: 12 days ago
JSON representation
A docker file containing a demo version of Atramhasis
- Host: GitHub
- URL: https://github.com/onroerenderfgoed/atramhasis-demo-docker
- Owner: OnroerendErfgoed
- Created: 2017-11-28T20:51:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T11:41:26.000Z (about 2 years ago)
- Last Synced: 2024-11-18T13:29:07.915Z (2 months ago)
- Topics: demo, docker, pypi-package
- Language: Dockerfile
- Size: 6.84 KB
- Stars: 0
- Watchers: 12
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Atramhasis demo docker
======================A dockerfile to build an Atramhasis demo docker image.
Run a Atramhasis demo instance
------------------------------After installing Docker for your operating system, you
can simply pull the image and run a container. After
executing the following commands you should be able to
visit the demo application in your browser on
http://localhost:6543. A LDF-server is also included
in the demo and accesible on http://localhost:3000... code::
$ sudo docker pull atramhasis/demo
$ sudo docker run -p 6543:6543 -p 3000:3000 atramhasis/demoOr if you wish to run a specific version (starting
from atramhasis 0.6.4), you can run:.. code::
$ sudo docker pull atramhasis/demo:0.6.4
$ sudo docker run -p 6543:6543 -p 3000:3000 atramhasis/demo:0.6.4Build and run an image
----------------------This is *not necaserry* if you just want to run the demo in a
container. You can pull the image from https://hub.docker.com... code::
$ sudo docker build -t atramhasis/demo .
$ sudo docker run -p 6543:6543 -p 3000:3000 atramhasis/demoRun Atramhasis with docker-compose
-----------------------------------You can create and start Atramhasis with a single command:
.. code::
$ docker compose up