bare bones docker setup

This commit is contained in:
michael welnick
2023-08-02 23:52:37 +00:00
parent 501e9e59e0
commit 922d145570
5 changed files with 74 additions and 1 deletions
+16
View File
@@ -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