-
Describe the bugHi, I'm trying to install a local instance of Sync-in on Ubuntu Server. I've used bind mounts to local folders instead of volumes. I'm running sync-in server with PUID:GUID matching the ownership of my root data folder: #include:
# - ./config/nginx/docker-compose.nginx.yaml
# - ./config/onlyoffice/docker-compose.onlyoffice.yaml
# - ./config/collabora/docker-compose.collabora.yaml
# - ./config/sync-in-desktop-releases/docker-compose.sync-in-desktop-releases.yaml
name: sync-in
services:
sync_in:
image: syncin/server:2
container_name: sync-in
restart: always
environment:
- INIT_ADMIN
- INIT_ADMIN_PASSWORD
- INIT_ADMIN_LOGIN
- PUID=110
- PGID=1008
ports:
- "6080:8080"
volumes:
- ./environment.yaml:/app/environment/environment.yaml
- /media/sync-in/app:/app/data
- desktop_releases:/app/static/releases:ro
depends_on:
- mariadb
logging:
driver: json-file
options:
max-size: "25m"
max-file: "5"
networks:
- sync_in_network
mariadb:
image: mariadb:11
container_name: mariadb
restart: always
command: --innodb_ft_cache_size=16000000 --max-allowed-packet=1G
environment:
MYSQL_ROOT_PASSWORD: SuperSecret
MYSQL_DATABASE: sync_in
volumes:
- /media/sync-in/db:/var/lib/mysql
networks:
- sync_in_network
networks:
sync_in_network:
driver: bridge
volumes:
desktop_releases:When I try to log in with the admin account, I get the following error: Why on earth is there a try to Thanks for helping. Installation methodDocker Compose System informationSync-in version: 2 Reproducible on demo?No Logs (server or browser) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The directory |
Beta Was this translation helpful? Give feedback.
The directory
/media/sync-inexists on the host, not in the container. You probably set that as adataPath, please setdataPathto/app/datainstead.