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.
Take it : https://appwrite.io/install/compose
ah thx i just realized all services using the same image, i just change the image name of "appwrite" service to mine. Should be enough for custom oauth2 provider, i guess. Other services dont use those files i assume
Recommended threads
- TablesDB `updateRows` returns `database_...
Hi Appwrite team! I’m seeing a strange issue with TablesDB bulk row updates on a self-hosted Appwrite instance. **Environment** - Appwrite self-hosted `1.9.0` ...
- [SOLVED] Realtime Missing Channels
```js useEffect(() => { let subscription: RealtimeSubscription; async function loadChips() { try { const {rows: chi...
- Functions executed by events does not ap...
Hello, Running self-hosted Appwrite version 1.9.0 (with console 7.8.26). When functions are triggered by an event (eg. databases.\*tables.\*.rows.\*.create) doe...