platoo/README.md

32 lines
431 B
Markdown
Raw Normal View History

2020-05-19 16:56:49 +00:00
# platoo
2020-05-23 08:51:26 +00:00
## Instructions
Launch docker compose stack:
```
sudo docker-compose up
```
Now, find the ID of your PostgreSQL database:
```
sudo docker ps
```
Mine is `1e211e6495ef`.
Now, we will copy our SQL file in the container and open a shell in it
```
docker cp platoo.sql 1e211e6495ef:/tmp
docker exec -ti 1e211e6495ef bash
```
Now, we will simply restore our file:
```
cd /tmp
psql -U platoo platoodb < platoo.sql
```