Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ nano .env
# Pin to specific version (optional)
export VERSION=v0.6.1 # Or use 'latest' for newest

# Pull images and start
# Create data directory with proper permissions
# The container runs as uid 1001, so the directory must be writable
mkdir data
chmod 777 data # Or: chown 1001:1001 data

docker compose pull
docker compose up -d

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build:
context: .
dockerfile: ./packages/api/Dockerfile
pull_policy: build
pull_policy: missing
container_name: tuvix-api
restart: unless-stopped
ports:
Expand Down Expand Up @@ -48,7 +48,7 @@ services:

app:
image: ghcr.io/techsquidtv/tuvix-rss/app:${VERSION:-latest}
pull_policy: build
pull_policy: missing
build:
context: .
dockerfile: ./packages/app/Dockerfile
Expand Down
6 changes: 5 additions & 1 deletion docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,11 @@ echo "VERSION=v0.7.0" >> .env
# Or export temporarily
export VERSION=v0.7.0

# Pull images and start
# Create data directory with proper permissions
# The container runs as uid 1001, so the directory must be writable
mkdir data
chmod 777 data # Or: chown 1001:1001 data

docker compose pull
docker compose up -d
```
Expand Down
Loading