aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100644
index efc52627..00000000
--- a/docker-compose.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-version: '3'
-services:
-
- db:
- image: postgres:latest
- hostname: db
- restart: always
- environment:
- - POSTGRES_USER=postgres
- - POSTGRES_PASSWORD=password
- - POSTGRES_DB=postgres
- ports:
- - '5532:5432'
- expose:
- - '5532'
- volumes:
- - ./docker/postgres/data:/var/lib/postgresql/data
-
- newspipe:
- build:
- context: .
- dockerfile: ./Dockerfile
- tty: true
- environment:
- - NEWSPIPE_CONFIG=/newspipe/instance/config.py
- ports:
- - "5000:5000"
- expose:
- - '5000'
- depends_on:
- - db
- command: "./wait-for-postgres.sh db"
bgstack15