Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Installation Docker

morpheus65535 edited this page Sep 11, 2019 · 2 revisions

Docker:

You can use this image to quickly build your own isolated app container. It's based on the Linux instructions above. For more info about Docker check out the official website.

docker create \
    --name=oscarr \
    -p 5656:5656 \
    -v /path/to/config/directory/on/host:/oscarr/data \
    -e TZ=America/Toronto \
    --restart=always \
    morpheus65535/oscarr:latest
  • -p 5656 - the port(s)
  • -v /oscarr/data - Oscarr Application Data
  • -e PGID for for GroupID - see below for explanation
  • -e PUID for for UserID - see below for explanation
  • -e TZ for timezone information, eg America/Toronto

User / Group Identifiers:

Sometimes when using data volumes (-v flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user PUID and group PGID. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work".

Clone this wiki locally