An open API service indexing awesome lists of open source software.

https://github.com/archellir/base_infrastructure

Infrastructure for base server
https://github.com/archellir/base_infrastructure

backup caddy docker filebrowser gitea portainer postgresql umami uptime-kuma

Last synced: about 1 year ago
JSON representation

Infrastructure for base server

Awesome Lists containing this project

README

          

# base_infrastructure

Infrastructure for base server

#### For postgreSQL multiple databases scripts:

```sh
chmod +x scripts/create-multiple-postgresql-databases.sh
```

#### For [pgAdmin](https://www.pgadmin.org/docs/pgadmin4/latest/container_deployment.html#mapped-files-and-directories):

```sh
sudo chown -R 5050:5050
```

#### Database backup & restore:

Backup:

```sh
docker exec -t pg_dumpall -c -U > dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql
```

Restore:

```sh
cat .sql | docker exec -i psql -U
```

#### Example of connection:

```sh
# host = container_name
postgres://username:password@container_name:port/db_name
```