1
0
Fork 0
mirror of https://github.com/anyproto/any-sync-dockercompose.git synced 2025-06-08 14:07:02 +09:00

removed any-sync-admin

This commit is contained in:
Grigory Efimov 2024-05-16 13:37:13 -03:00
parent ec15fe7d06
commit 7b57295ff3
No known key found for this signature in database
GPG key ID: 0A88C34DFA7FD939
7 changed files with 4 additions and 48 deletions

View file

@ -10,7 +10,6 @@ ANY_SYNC_NODE_VERSION=prod
ANY_SYNC_FILENODE_VERSION=prod ANY_SYNC_FILENODE_VERSION=prod
ANY_SYNC_COORDINATOR_VERSION=prod ANY_SYNC_COORDINATOR_VERSION=prod
ANY_SYNC_CONSENSUSNODE_VERSION=prod ANY_SYNC_CONSENSUSNODE_VERSION=prod
ANY_SYNC_ADMIN_VERSION=latest
MONGO_VERSION=7.0.2 MONGO_VERSION=7.0.2
REDIS_VERSION=7.2.0-v6 REDIS_VERSION=7.2.0-v6
@ -66,7 +65,3 @@ MONGO_URL=${MONGO_CONNECT}/?replicaSet=${MONGO_REPLICA_SET}
REDIS_HOST=redis REDIS_HOST=redis
REDIS_PORT=6379 REDIS_PORT=6379
REDIS_URL="redis://${REDIS_HOST}:${REDIS_PORT}?dial_timeout=3&read_timeout=6s" REDIS_URL="redis://${REDIS_HOST}:${REDIS_PORT}?dial_timeout=3&read_timeout=6s"
ANY_SYNC_ADMIN_HOST=0.0.0.0
ANY_SYNC_ADMIN_PORT=5000
EXTERNAL_ANY_SYNC_ADMIN_PORT=80

View file

@ -7,7 +7,7 @@ generate_env:
generateconfig-env generateconfig-env
start: generate_env start: generate_env
docker compose up -d docker compose up --detach --remove-orphans
@echo "Done! Upload your self-hosted network configuration file ${CURDIR}/etc/client.yml into the client app" @echo "Done! Upload your self-hosted network configuration file ${CURDIR}/etc/client.yml into the client app"
@echo "See: https://doc.anytype.io/anytype-docs/data-and-security/self-hosting#switching-between-networks" @echo "See: https://doc.anytype.io/anytype-docs/data-and-security/self-hosting#switching-between-networks"
@ -21,9 +21,9 @@ pull:
docker compose pull docker compose pull
down: down:
docker compose down docker compose down --remove-orphans
logs: logs:
docker compose logs -f docker compose logs --follow
# build with "plain" log for debug # build with "plain" log for debug
build: build:

View file

@ -15,7 +15,6 @@ Self-host for any-sync, designed for personal usage or for review and testing pu
- [Troubleshooting](#troubleshooting) - [Troubleshooting](#troubleshooting)
- [Compatible versions](#compatible-versions) - [Compatible versions](#compatible-versions)
- [Local build](#local-build) - [Local build](#local-build)
- [Limits web admin](#limits-web-admin)
- [Upgrading](#upgrading) - [Upgrading](#upgrading)
- [Changelog](#changelog) - [Changelog](#changelog)
- [Contribution](#contribution) - [Contribution](#contribution)
@ -151,9 +150,6 @@ If you need to create local build binaries for any-sync-*, you can do so by usin
make restart make restart
``` ```
## Limits web admin
open link in browser: http://127.0.0.1:80
## Upgrading ## Upgrading
For detailed instructions of upgrading to the latest version, please see the [UPGRADE.md](./UPGRADE.md) file. For detailed instructions of upgrading to the latest version, please see the [UPGRADE.md](./UPGRADE.md) file.

View file

@ -1,11 +0,0 @@
services:
any-sync-admin:
image: localbuild-admin
build:
context: .
dockerfile: repos/any-sync-admin/Dockerfile
ssh:
- default
args:
REPO_DIR: repos/any-sync-admin/
command: python app.py

View file

@ -220,14 +220,3 @@ services:
limits: limits:
memory: 500M memory: 500M
restart: on-failure restart: on-failure
any-sync-admin:
image: "ghcr.io/anyproto/any-sync-admin:${ANY_SYNC_ADMIN_VERSION}"
depends_on:
- redis
- mongo-1
ports:
- "${EXTERNAL_ANY_SYNC_ADMIN_PORT}:${ANY_SYNC_ADMIN_PORT}"
volumes:
- ./etc/any-sync-admin/:/etc/any-sync-admin/
restart: on-failure

View file

@ -1,10 +0,0 @@
---
listen:
host: %ANY_SYNC_ADMIN_HOST%
port: %ANY_SYNC_ADMIN_PORT%
debug: True
mongo:
url: %MONGO_URL%
redis:
host: %REDIS_HOST%
port: %REDIS_PORT%

View file

@ -9,7 +9,7 @@ DEST_PATH="./etc"
NETWORK_FILE="./storage/docker-generateconfig/network.yml" NETWORK_FILE="./storage/docker-generateconfig/network.yml"
echo "INFO: Create directories for all node types" echo "INFO: Create directories for all node types"
for NODE_TYPE in node-1 node-2 node-3 filenode coordinator consensusnode admin; do for NODE_TYPE in node-1 node-2 node-3 filenode coordinator consensusnode; do
mkdir -p "${DEST_PATH}/any-sync-${NODE_TYPE}" mkdir -p "${DEST_PATH}/any-sync-${NODE_TYPE}"
done done
@ -48,9 +48,6 @@ cat "${NETWORK_FILE}" docker-generateconfig/etc/common.yml storage/docker-genera
echo "INFO: Copy network file to coordinator directory" echo "INFO: Copy network file to coordinator directory"
cp "storage/docker-generateconfig/nodesProcessed.yml" "${DEST_PATH}/any-sync-coordinator/network.yml" cp "storage/docker-generateconfig/nodesProcessed.yml" "${DEST_PATH}/any-sync-coordinator/network.yml"
echo "INFO: Copy any-sync-admin config"
cp "docker-generateconfig/etc/admin.yml" "${DEST_PATH}/any-sync-admin/config.yml"
echo "INFO: Copy aws credentials config" echo "INFO: Copy aws credentials config"
cp "docker-generateconfig/etc/aws-credentials" "${DEST_PATH}/.aws/credentials" cp "docker-generateconfig/etc/aws-credentials" "${DEST_PATH}/.aws/credentials"