aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-05-01 14:11:05 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-05-01 14:11:05 +0200
commit9457ebea575f0fb6dbd571d4eb2766d21289cea7 (patch)
treece1c3965c8c1a7c8241ef88a0ecdca25444d8e9b /docker-compose.yml
parentUpdated URL of the project home page. (diff)
downloadnewspipe-9457ebea575f0fb6dbd571d4eb2766d21289cea7.tar.gz
newspipe-9457ebea575f0fb6dbd571d4eb2766d21289cea7.tar.bz2
newspipe-9457ebea575f0fb6dbd571d4eb2766d21289cea7.zip
Removed Dockerfile and docker-compose.yml.
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