mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 00:18:19 +01:00
fix: 🐛 Update example docker-compose.yml
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
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
This commit is contained in:
parent
844fbf7c9e
commit
14855b9dfe
|
|
@ -1,6 +1,6 @@
|
||||||
services:
|
services:
|
||||||
versia:
|
versia:
|
||||||
image: ghcr.io/versia-pub/server:latest
|
image: ghcr.io/versia-pub/server:main
|
||||||
volumes:
|
volumes:
|
||||||
- ./logs:/app/dist/logs
|
- ./logs:/app/dist/logs
|
||||||
- ./config:/app/dist/config:ro
|
- ./config:/app/dist/config:ro
|
||||||
|
|
@ -14,7 +14,6 @@ services:
|
||||||
- db
|
- db
|
||||||
- redis
|
- redis
|
||||||
- sonic
|
- sonic
|
||||||
- fe
|
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
image: ghcr.io/versia-pub/worker:main
|
image: ghcr.io/versia-pub/worker:main
|
||||||
|
|
@ -30,23 +29,14 @@ services:
|
||||||
- db
|
- db
|
||||||
- redis
|
- redis
|
||||||
|
|
||||||
fe:
|
|
||||||
image: ghcr.io/versia-pub/frontend:main
|
|
||||||
container_name: versia-fe
|
|
||||||
restart: unless-stopped
|
|
||||||
networks:
|
|
||||||
- versia-net
|
|
||||||
environment:
|
|
||||||
NUXT_PUBLIC_API_HOST: https://yourserver.com
|
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: ghcr.io/versia-pub/postgres:main
|
image: postgres:17-alpine
|
||||||
container_name: versia-db
|
container_name: versia-db
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: versia
|
POSTGRES_DB: versia
|
||||||
POSTGRES_USER: versia
|
POSTGRES_USER: versia
|
||||||
POSTGRES_PASSWORD: _______________
|
POSTGRES_PASSWORD: versia
|
||||||
networks:
|
networks:
|
||||||
- versia-net
|
- versia-net
|
||||||
volumes:
|
volumes:
|
||||||
|
|
@ -64,7 +54,7 @@ services:
|
||||||
sonic:
|
sonic:
|
||||||
volumes:
|
volumes:
|
||||||
- ./config.cfg:/etc/sonic.cfg
|
- ./config.cfg:/etc/sonic.cfg
|
||||||
- ./store/:/var/lib/sonic/store/
|
- ./store:/var/lib/sonic/store/
|
||||||
image: valeriansaliou/sonic:v1.4.9
|
image: valeriansaliou/sonic:v1.4.9
|
||||||
container_name: versia-sonic
|
container_name: versia-sonic
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue