diff options
Diffstat (limited to 'deploy')
-rw-r--r-- | deploy/docker-compose.yml | 2 | ||||
-rwxr-xr-x | deploy/setup-mastodon.sh | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/deploy/docker-compose.yml b/deploy/docker-compose.yml index ca599b5..1201d60 100644 --- a/deploy/docker-compose.yml +++ b/deploy/docker-compose.yml @@ -38,7 +38,7 @@ services: db: restart: always - image: postgres:11-alpine + image: postgres:15 healthcheck: test: ["CMD", "pg_isready", "-U", "postgres"] networks: diff --git a/deploy/setup-mastodon.sh b/deploy/setup-mastodon.sh index 165bbf4..3bd2c74 100755 --- a/deploy/setup-mastodon.sh +++ b/deploy/setup-mastodon.sh @@ -11,6 +11,7 @@ install conf/.env.ambassador /srv/plural.cafe/mastodon/.env.ambassador install conf/.env.production /srv/plural.cafe/mastodon/.env.production # TODO some edits here +# TODO remember that database pg_hba.conf should be set to trust 192.168.0.0/16 for the docker network # TODO rewrite the below [ -z "$YML_LOC" ] && YML_LOC="$(pwd)" cd $YML_LOC |