487bf6732e
* Assume offline mode * PR feedback
13 lines
297 B
Bash
Executable File
13 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source .env
|
|
|
|
# Launching a container in such a way that it's destroyed after you detach from the terminal:
|
|
docker compose up
|
|
|
|
# docker exec -it nym-data-observatory-pg /bin/bash
|
|
# psql -U youruser -d yourdb
|
|
|
|
echo "Tearing down containers to have a clean slate"
|
|
docker compose down -v
|