From 9457ebea575f0fb6dbd571d4eb2766d21289cea7 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 1 May 2020 14:11:05 +0200 Subject: Removed Dockerfile and docker-compose.yml. --- docker-compose.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 docker-compose.yml (limited to 'docker-compose.yml') 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" -- cgit