Add RMD Psono Install.txt
This commit is contained in:
parent
e2b577c05e
commit
26f36d93b6
1 changed files with 32 additions and 0 deletions
32
RMD Psono Install.txt
Normal file
32
RMD Psono Install.txt
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Install Psono Docker
|
||||||
|
|
||||||
|
Installation with Docker
|
||||||
|
If you have docker running, then the database is just one command away:
|
||||||
|
|
||||||
|
First create the folder for your data e.g.:
|
||||||
|
|
||||||
|
sudo mkdir -p /home/debian/docker/psono/postgres
|
||||||
|
|
||||||
|
# Send a test email
|
||||||
|
|
||||||
|
# Start the database container
|
||||||
|
docker run --name psono-database \
|
||||||
|
-v /home/debian/docker/psono/postgres:/var/lib/postgresql/data \
|
||||||
|
-e POSTGRES_USER=psono \
|
||||||
|
-e POSTGRES_PASSWORD=Cj2BPQLsBCI3 \
|
||||||
|
-d --restart=unless-stopped \
|
||||||
|
-p 5432:5432 postgres:13-alpine
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
EMAIL_FROM: 'noreply@rmdigital.io'
|
||||||
|
EMAIL_HOST: 'mail.rmdigital.io'
|
||||||
|
EMAIL_HOST_USER: 'noreply@rmdigital.io'
|
||||||
|
EMAIL_HOST_PASSWORD : 'Cj2BPQLsBCI3'
|
||||||
|
EMAIL_PORT: 587
|
||||||
|
EMAIL_SUBJECT_PREFIX: ''
|
||||||
|
EMAIL_USE_TLS: False
|
Loading…
Reference in a new issue