This commit is contained in:
Atridad Lahiji 2025-01-03 01:54:16 -07:00
parent 7d7611e94d
commit df57b56bfa
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438
2 changed files with 24 additions and 0 deletions

19
compose/linkwarden.yml Normal file
View file

@ -0,0 +1,19 @@
services:
postgres:
image: postgres:16-alpine
env_file: stack.env
restart: always
volumes:
- ${ROOT_DIR}/pgdata:/var/lib/postgresql/data
linkwarden:
env_file: stack.env
environment:
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
restart: always
image: ghcr.io/linkwarden/linkwarden:latest
ports:
- 3445:3000
volumes:
- ${ROOT_DIR}/data:/data/data
depends_on:
- postgres

5
compose/pipingserver.yml Normal file
View file

@ -0,0 +1,5 @@
services:
piping-server-pkg:
image: nwtgck/piping-server
ports:
- 8282:8080