summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 00000000..c2b2bfec
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,22 @@
+version: '3'
+
+services:
+ db:
+ image: postgres
+ restart: always
+ environment:
+ POSTGRES_USER: rrr
+ POSTGRES_PASSWORD: rrr
+ POSTGRES_DB: rrr
+ lemmy:
+ build:
+ context: .
+ command: /bin/sh -c /app/lemmy
+ ports:
+ - "8080:8080"
+ environment:
+ LEMMY_FRONT_END_DIR: /app/dist
+ DATABASE_URL: postgres://rrr:rrr@db:5432/rrr
+
+ links:
+ - db