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
b0f113cdd4
|
2 years ago | |
---|---|---|
caddy | 2 years ago | |
gitea | 2 years ago | |
postgresql | 2 years ago | |
README.md | 2 years ago | |
docker-compose.yaml | 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