Skip to main content
Version: 0.6.5

Installation with Docker

Prerequisites#

In case you do not have Docker installed on your machine here are the URLs:

Install it via Docker CLI#

With the Docker CLI it is pretty simple. You just need to run one command:

❯ docker run -p 80:8080 vallezw/sheetable 

Port#

As you can see in the command above the image exposes the 8080 port.

Volumes#

If 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 file#

An example docker-composer file would look like this:

version: "3"services:    sheetable:    container_name: sheetable    restart: unless-stopped    image: vallezw/sheetable    ports:      - 80:8080    environment:      - CONFIG_PATH=/app/config/    volumes:      - /etc/localtime:/etc/localtime:ro      - /local/path/config/dir:/app/config

Login Data#

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