fix: update GTS configuration

- Change the instance name to 'Free Flow'.
- Change the local GTS docker image version from 'latest' to
  $GTS_VERSION.
- Use GTS_DOCKER_IMAGE_DIGEST to specify the image digest.
- Allow users (i.e. myself) to upload custom CSS.
This commit is contained in:
Dan Anglin 2023-02-05 16:07:36 +00:00
parent 92a56e0941
commit fa12b7491c
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638
4 changed files with 5 additions and 5 deletions

2
config

@ -1 +1 @@
Subproject commit d8868a93bb9d01c32ba37566016125d95a0f4192
Subproject commit 0dda4e50e69cd0b4b01feedcf7ea3867214e5b1d

View file

@ -85,7 +85,7 @@ services:
# -- Free Flow 2 --
gotosocial:
container_name: "free-flow-2"
image: localhost/flow/gotosocial:latest
image: localhost/flow/gotosocial:${GTS_VERSION}
build:
context: "../gotosocial"
expose:

View file

@ -1,4 +1,4 @@
FROM superseriousbusiness/gotosocial:${GTS_VERSION}
FROM superseriousbusiness/gotosocial:${GTS_VERSION}@${GTS_DOCKER_IMAGE_DIGEST}
USER 0

View file

@ -33,7 +33,7 @@ log-db-queries: false
# String. Application name to use internally.
# Examples: ["My Application","gotosocial"]
# Default: "gotosocial"
application-name: "${GTS_APPLICATION_NAME_01} ${GTS_APPLICATION_NAME_02} ${GTS_APPLICATION_NAME_03}"
application-name: "${GTS_APPLICATION_NAME_01} ${GTS_APPLICATION_NAME_02}"
# String. Hostname that this server will be reachable at. Defaults to localhost for local testing,
# but you should *definitely* change this when running for real, or your server won't work at all.
@ -234,7 +234,7 @@ accounts-reason-required: true
#
# Options: [true, false]
# Default: false
accounts-allow-custom-css: false
accounts-allow-custom-css: true
########################
##### MEDIA CONFIG #####