platoo/README.md
2020-05-23 10:51:26 +02:00

32 lines
431 B
Markdown

# platoo
## 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
```