Replies: 1 comment 5 replies
-
https://www.linkace.org/docs/v1/setup/setup-with-docker/simple/ So it clear enough, and we skipped things. 🤦🏼 |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For the past few days I've been trying to get LinkAce up and running on my Ubuntu-server. I've it installed using docker compose, but LinkAce keeps telling me that my .env-file, /storage and /storage/logs are not writable.
I've attached my stack. Does anyone know why the paths are not writable and how to fix it?
version: "3" services: linkace: hostname: linkace image: linkace/linkace:simple container_name: linkace networks: - milkyway ports: - 8585:80/tcp restart: unless-stopped volumes: - /mnt/volume/appdata/linkace/.env:/app/.env - /mnt/volume/appdata/linkace/storage/logs:/app/storage/logs working_dir: /app restart: unless-stopped networks: milkyway: external: true
Beta Was this translation helpful? Give feedback.
All reactions