Merge pull request 'docs: added docker configuration' () from staging-server into main

Reviewed-on: 
This commit is contained in:
Otto 2025-03-27 10:27:54 +00:00
commit 2c66c580f7

@ -105,7 +105,7 @@ server {
# domain name here
server_name staging.cellar.social;
location /api {
location /api/ {
proxy_pass http://127.0.0.1:3000/;
proxy_set_header Host $http_host;
@ -215,3 +215,22 @@ npm run start
# Verify that cellar-api process is running
pm2 list
```
## Docker
Under `otto` user:
```bash
# Install docker
curl -fsSL https://get.docker.com | sudo sh
# Add api user to the docker group so it can run docker without sudo rights
sudo usermod -aG docker api
```
Under `api` user:
```bash
# Log in to docker group to avoid to log out and log in again
newgrp docker
```