Infrastructure for base server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
arcbjorn 9bdf7b5a44
docs(readme): add DB backup & restore instructions
2 years ago
caddy ref(Caddy): add dedicated folder 2 years ago
postgresql feat(pgSQL): add multiple DBs & users script 2 years ago
README.md docs(readme): add DB backup & restore instructions 2 years ago
docker-compose.yaml feat(Docker): add Portainer && Caddy service 2 years ago

README.md

base_infrastructure

Infrastructure for base server

For postgreSQL multiple databases scripts:

chmod +x scripts/create-multiple-postgres-databases.sh

Database backup & restore:

Backup:

docker exec -t <postgres-container-id> pg_dumpall -c -U <user> > dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql

Restore:

cat <dump_name>.sql | docker exec -i <postgres-container-id> psql -U <user>