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
f586146c6f
|
2 years ago | |
---|---|---|
caddy | 2 years ago | |
dozzle | 2 years ago | |
filebrowser | 2 years ago | |
gitea | 2 years ago | |
memos | 2 years ago | |
postgresql | 2 years ago | |
umami | 2 years ago | |
uptime-kuma | 2 years ago | |
README.md | 2 years ago |
README.md
base_infrastructure
Infrastructure for base server
For postgreSQL multiple databases scripts:
chmod +x scripts/create-multiple-postgresql-databases.sh
For pgAdmin:
sudo chown -R 5050:5050 <host_directory>
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>
Example of connection:
# host = container_name
postgres://username:password@container_name:port/db_name