Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: include default services into extras #1165

Merged
merged 1 commit into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions doc/DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ docker ps -a
We have provided optional services in the file `docker-compose-extra.yml`.
You do not need them for a fully functional installation of AppFlowy Cloud, but they could be helpful for various
admin/debug tasks.
We include all services in the file `docker-compose.yml`. It is easier to start all services and remove orphan containers warning message.

- `pgadmin` (Web UI to visualize the provided postgres database)
- `portainer`/`portainer_init` (Web UI to provide some monitoring and ease of container management)
Expand All @@ -107,8 +108,6 @@ admin/debug tasks.
docker compose --file docker-compose-extras.yml up -d
```

You may ignore the orphan containers warning message that docker will output.


> When using the `docker compose up -d` command without specifying a tag, Docker Compose will pull the `latest`
> tag for the `appflowy_cloud` and `admin_frontend` images from Docker Hub by default. If you've set
Expand Down
6 changes: 2 additions & 4 deletions docker-compose-extras.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Non-essential additional services
include:
- docker-compose.yml

services:
tunnel:
Expand Down Expand Up @@ -33,7 +35,3 @@ services:
- PGADMIN_DEFAULT_PASSWORD=${PGADMIN_DEFAULT_PASSWORD}
volumes:
- ./docker/pgadmin/servers.json:/pgadmin4/servers.json

volumes:
postgres_data:
minio_data:
Loading