Note to nightly Docker users #482
reaper47
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The volume path in the Docker container has been updated to
recipya-data:/home/recipya/.config/Recipya.Old:
services: web: image: reaper99/recipya:nightly container_name: recipya restart: unless-stopped environment: [...] ports: - "<host-port>:8078" volumes: - "recipya-data:/root/.config/Recipya" volumes: recipya-data:Updated:
services: web: image: reaper99/recipya:nightly container_name: recipya restart: unless-stopped environment: [...] ports: - "<host-port>:8078" <-- Verify that the port is 8078 volumes: - "recipya-data:/home/recipya/.config/Recipya" <-- This changed # Default to user and group 1000 user: "${UID:-1000}:${GID:-1000}" <-- This was added volumes: recipya-data:The Docker image now runs under the
recipyauser instead of root.All reactions