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 8080:8080 vallezw/sheetable
#
PortAs you can see in the example command above, the 8080 port will be mapped to port 8080 in the docker host.
#
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.
#
Docker composer fileAn example docker-composer file would look like this:
version: "3"services: sheetable: container_name: sheetable restart: unless-stopped image: vallezw/sheetable ports: - 8080:8080 environment: - CONFIG_PATH=/app/config/ volumes: - /etc/localtime:/etc/localtime:ro - /local/path/config/dir:/app/config
#
Login DataLogin Data
The default login credentials for the admin user are:
- Email: admin@admin.com
- Password: sheetable To configure those and/or change other settings such as the port mapping, use the Configuration guide