diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-12-23 00:21:35 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-12-23 00:21:35 +0100 |
| commit | 2d5b700eb63669ca0a4bf27b5df58aa8af15735f (patch) | |
| tree | 2e11a0cc848cf3b0151385547bac7d405d347336 /docker-compose.yml | |
| parent | a9b3b4d512421817cc34c4efe5f4d29a9453278d (diff) | |
Add backend files
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..3551ec6 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3' + +services: + forum: + build: . + env_file: .env + image: rbdr/forum + volumes: + - .:/app + environment: + - FORUM_RETHINK_DB_HOST=db + ports: + - "1978:1978" + links: + - db + db: + image: rethinkdb:2.3.7 + ports: + - "8080:8080" |