2023-08-02 18:52:37 -05:00
|
|
|
version: "3.5"
|
|
|
|
services:
|
|
|
|
linkwarden:
|
|
|
|
env_file: .env
|
2023-08-03 13:25:46 -05:00
|
|
|
environment:
|
|
|
|
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
|
2023-08-02 18:52:37 -05:00
|
|
|
restart: always
|
|
|
|
build: .
|
|
|
|
ports:
|
|
|
|
- 3000:3000
|
|
|
|
volumes:
|
|
|
|
- /var/lib/elasticsearch/data
|
|
|
|
postgres:
|
|
|
|
image: postgres
|
|
|
|
env_file: .env
|
|
|
|
restart: always
|
|
|
|
volumes:
|
2023-08-03 12:38:44 -05:00
|
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
volumes:
|
2023-08-03 13:25:46 -05:00
|
|
|
pgdata:
|