36 lines
577 B
Markdown
36 lines
577 B
Markdown
docker files and integrations
|
|
|
|
# idhub
|
|
|
|
use script `./idhub_build.sh` to rebuild it locally
|
|
|
|
TODO: incorporate to general docker compose
|
|
|
|
# deploy everything in localhost
|
|
|
|
note: right now the same applies for localhost and reachable deployments
|
|
|
|
```
|
|
docker compose up
|
|
```
|
|
|
|
# building and deploying new docker images
|
|
|
|
```
|
|
make docker
|
|
```
|
|
|
|
# dev
|
|
|
|
if you want to enter a shell inside a new container:
|
|
|
|
```
|
|
docker run -it --entrypoint= ${target_docker_image} bash
|
|
```
|
|
|
|
if you want to enter a shell on already running container:
|
|
|
|
```
|
|
docker exec -it ${target_docker_image} bash
|
|
```
|