mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 00:18:19 +01:00
Some checks failed
CodeQL Scan / Analyze (javascript-typescript) (push) Failing after 45s
Build Docker Images / lint (push) Successful in 28s
Build Docker Images / check (push) Successful in 50s
Build Docker Images / tests (push) Failing after 6s
Build Docker Images / build (server, Dockerfile, ${{ github.repository_owner }}/server) (push) Has been skipped
Build Docker Images / build (worker, Worker.Dockerfile, ${{ github.repository_owner }}/worker) (push) Has been skipped
Deploy Docs to GitHub Pages / build (push) Failing after 12s
Mirror to Codeberg / Mirror (push) Failing after 0s
Deploy Docs to GitHub Pages / Deploy (push) Has been skipped
Nix Build / check (push) Failing after 32m30s
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
services:
|
|
versia:
|
|
image: ghcr.io/versia-pub/server:main
|
|
volumes:
|
|
- ./logs:/app/dist/logs
|
|
- ./config:/app/dist/config:ro
|
|
- ./uploads:/app/dist/uploads
|
|
restart: unless-stopped
|
|
container_name: versia
|
|
tty: true
|
|
networks:
|
|
- versia-net
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
- sonic
|
|
|
|
worker:
|
|
image: ghcr.io/versia-pub/worker:main
|
|
volumes:
|
|
- ./logs:/app/dist/logs
|
|
- ./config:/app/dist/config:ro
|
|
restart: unless-stopped
|
|
container_name: versia-worker
|
|
tty: true
|
|
networks:
|
|
- versia-net
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
|
|
db:
|
|
image: postgres:17-alpine
|
|
container_name: versia-db
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_DB: versia
|
|
POSTGRES_USER: versia
|
|
POSTGRES_PASSWORD: versia
|
|
networks:
|
|
- versia-net
|
|
volumes:
|
|
- ./db-data:/var/lib/postgresql/data
|
|
|
|
redis:
|
|
image: redis:alpine
|
|
container_name: versia-redis
|
|
volumes:
|
|
- ./redis-data:/data
|
|
restart: unless-stopped
|
|
networks:
|
|
- versia-net
|
|
|
|
sonic:
|
|
volumes:
|
|
- ./config.cfg:/etc/sonic.cfg
|
|
- ./store:/var/lib/sonic/store/
|
|
image: valeriansaliou/sonic:v1.4.9
|
|
container_name: versia-sonic
|
|
restart: unless-stopped
|
|
networks:
|
|
- versia-net
|
|
|
|
networks:
|
|
versia-net:
|