Remove vanilla deployment instructions

This commit is contained in:
Jon Staab
2025-10-16 10:34:18 -07:00
parent 21f1185db0
commit 9b7a5a4b51
4 changed files with 7 additions and 93 deletions
+3 -3
View File
@@ -21,8 +21,8 @@ USER nonroot:nonroot
EXPOSE 3334
ENV CONFIG=/tmp/config
ENV MEDIA=/tmp/media
ENV DATA=/tmp/data
ENV CONFIG=/app/config
ENV MEDIA=/app/media
ENV DATA=/app/data
ENTRYPOINT ["/bin/zooid"]
+4 -47
View File
@@ -111,59 +111,16 @@ can_manage = true
See `justfile` for defined commands.
## Deploying on ubuntu
```sh
# Add a user
adduser zooid
# Install system dependencies
sudo apt update
apt install nginx git certbot python3-certbot-nginx sqlite3 gcc
# Install go and add it to path
wget -qO- https://go.dev/dl/go1.25.1.linux-amd64.tar.gz | sudo tar -C /usr/local -xzf -
echo 'export PATH=$PATH:/usr/local/go/bin' >> /etc/profile
# Log in as your user
su --login zooid
# Clone the repository and build
git clone https://github.com/coracle-social/zooid.git ~/zooid && cd ~/zooid
CGO_ENABLED=1 go build -o bin/zooid cmd/relay/main.go
# Back to root
exit
# Add a service file - edit if needed
cp /home/zooid/zooid/zooid.service /etc/systemd/system/zooid.service
# Start the service
systemctl enable zooid
service zooid start
# Set up a SSL certificate
# Use another method or --manual-auth-hook and --manual-cleanup-hook to automate renewal
certbot certonly --manual -d '*.yourdomain.com' --preferred-challenges=dns
# Set up nginx - be sure to edit the server_name to your domain
cp /home/zooid/zooid/nginx.conf /etc/nginx/sites-available/zooid.conf
ln -s /etc/nginx/sites-{available,enabled}/zooid.conf
# Enable the site and restart nginx
service nginx restart
```
## Deploying via container
## Deploying
Zooid can be run using an OCI container:
```sh
podman run -it \
-p 3334:3334 \
-v ./config:/tmp/config \
-v ./media:/tmp/media \
-v ./data:/tmp/data \
-v ./config:/app/config \
-v ./media:/app/media \
-v ./data:/app/data \
ghcr.io/coracle-social/zooid
```
-25
View File
@@ -1,25 +0,0 @@
server {
listen 443 ssl;
server_name *.yourdomain.com;
ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://127.0.0.1:3334;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}
server {
listen 80;
server_name *.yourdomain.com;
return 301 https://$host$request_uri;
}
-18
View File
@@ -1,18 +0,0 @@
[Unit]
Description=zooid
After=network.target
[Service]
Type=simple
User=zooid
Group=zooid
WorkingDirectory=/home/zooid/zooid
ExecStart=/home/zooid/zooid/bin/zooid
Restart=always
RuntimeMaxSec=3600
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=zooid
[Install]
WantedBy=multi-user.target