Hello, i am using appwrite with custom setup(added my own oauth service) and currently using the docker-compose.yaml file to run it on my server. File has a warning saying it is not secure to use it. Is there another example docker-compose file that i can use, using my own builds? If not i will manually do them adding build tags to the services like :
appwrite:
container_name: appwrite
<<: *x-logging
image: my-namespace/appwrite-dev
build:
context: .
args:
DEBUG: false
TESTING: true
VERSION: dev
But i am also not sure about which ports i can leave open.