Installation with Docker
#
PrerequisitesIn case you do not have Docker installed on your machine here are the URLs:
#
Install it via Docker CLIWith the Docker CLI it is pretty simple. You just need to run one command:
❯ docker run -p 80:8080 vallezw/sheetable
#
PortAs you can see in the command above the image exposes the 8080 port.
#
VolumesIf you want to save the data (uploaded sheets, etc) in a docker volume you have to add
-v your_volume:/app/config
.
In case you do not know how volumes work here the official Docker docs to that topic.
Login Data
The default login credentials for the admin user are:
- Email: admin@admin.com
- Password: sheetable
To configure those and/or change other settings use the Configuration guide