2023-08-02 18:52:37 -05:00
|
|
|
version: "3.5"
|
|
|
|
services:
|
2023-08-03 16:54:04 -05:00
|
|
|
postgres:
|
|
|
|
image: postgres
|
|
|
|
env_file: .env
|
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- ./pgdata:/var/lib/postgresql/data
|
2023-08-02 18:52:37 -05:00
|
|
|
linkwarden:
|
|
|
|
env_file: .env
|
2023-08-03 17:31:40 -05:00
|
|
|
environment:
|
|
|
|
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
|
2023-08-02 18:52:37 -05:00
|
|
|
restart: always
|
2023-09-27 00:26:52 -05:00
|
|
|
image: ghcr.io/linkwarden/linkwarden:latest
|
2023-08-02 18:52:37 -05:00
|
|
|
ports:
|
|
|
|
- 3000:3000
|
|
|
|
volumes:
|
2023-08-03 16:54:04 -05:00
|
|
|
- ./data:/data/data
|
|
|
|
depends_on:
|
|
|
|
- postgres
|