bare bones docker setup
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
version: "3.5"
|
||||
services:
|
||||
linkwarden:
|
||||
env_file: .env
|
||||
restart: always
|
||||
build: .
|
||||
ports:
|
||||
- 3000:3000
|
||||
volumes:
|
||||
- /var/lib/elasticsearch/data
|
||||
postgres:
|
||||
image: postgres
|
||||
env_file: .env
|
||||
restart: always
|
||||
volumes:
|
||||
- ./pgdata:/var/lib/postgresql/data
|
||||
Reference in New Issue
Block a user