TODO merge with idhub? | it allows to run everything done in this project as a docker compose
This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
pedro 27742db4fb init with previous work
this repo is a reinitialization with a change in the concept

previous repo had git subtree of django-musician and django-orchestra,
that was too static for our interest

next approach is a script that pulls git repos, and that would be
needed if you want to build everything, if not, just with the docker
compose you would have enough for running the containers, hence,
downloading the images from the docker registry
2023-10-10 10:07:46 +02:00
docker init with previous work 2023-10-10 10:07:46 +02:00
.env.example init with previous work 2023-10-10 10:07:46 +02:00
.gitignore init with previous work 2023-10-10 10:07:46 +02:00
Makefile init with previous work 2023-10-10 10:07:46 +02:00
README.md init with previous work 2023-10-10 10:07:46 +02:00
docker-compose.yml init with previous work 2023-10-10 10:07:46 +02:00

README.md

docker files and integrations

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