My own modifications. Enjoy!

- Bronze
This commit is contained in:
2023-08-13 01:50:00 -04:00
parent 8fb03c885c
commit 3e64b4b2dd
13 changed files with 224 additions and 182 deletions
+4 -4
View File
@@ -2,14 +2,14 @@ version: '3.8'
services:
db:
image: postgres:12.1-alpine
image: postgres:15-alpine
container_name: pleroma_db
restart: always
healthcheck:
test: ["CMD", "pg_isready", "-U", "pleroma"]
environment:
POSTGRES_USER: pleroma
POSTGRES_PASSWORD: ChangeMe!
POSTGRES_PASSWORD: CHANGETHEDATABASEPASSWORD!
POSTGRES_DB: pleroma
volumes:
- ./postgres:/var/lib/postgresql/data
@@ -33,7 +33,7 @@ services:
args:
- "UID=1000"
- "GID=1000"
- "PLEROMA_VER=v2.4.2"
# - "PLEROMA_VER=v2.4.2"
volumes:
- ./uploads:/var/lib/pleroma/uploads
- ./static:/var/lib/pleroma/static
@@ -44,7 +44,7 @@ services:
ADMIN_EMAIL: admin@example.com
NOTIFY_EMAIL: notify@example.com
DB_USER: pleroma
DB_PASS: ChangeMe!
DB_PASS: CHANGETHEDATABASEPASSWORD!
DB_NAME: pleroma
depends_on:
- db