Quick start
⚠️ WARNING
Use official Docker installation instead of using snap on Ubuntu, see issue #5
Start the Gisia services
Create the project folder
mkdir gisia
cd gisia
Init the config
docker run --rm -v ./:/output gisia/init:latest
Modify and rename the .env
cp .env.example .env
Start the server
docker compose up -d
Show the adminstrator initial password
docker exec -it gisia-web cat /rails/initial_root_password
Update user password via UI
- login as user
root - goto
/-/users/settings/password/edit - change your password
Reset root password via Rails console
docker exec -it gisia-web bash
bundle exec rails console
user = User.find_by(username: 'root')
user.password = 'your-new-password'
user.password_confirmation = 'your-new-password'
user.save!
Create project
- goto
/-/dashboard/projects - create a new project
Next How To Run Pipelines