Browse Source

Removing stack configs

Kirk Trombley 6 years ago
parent
commit
518b6cc7d2
2 changed files with 0 additions and 47 deletions
  1. 0 18
      stack-testing.yml
  2. 0 29
      stack.yml

+ 0 - 18
stack-testing.yml

@@ -1,18 +0,0 @@
-version: "3.1"
-
-services:
-
-  rollbot:
-    build: .
-    ports:
-      - "6071:6070"
-    restart: always
-    depends_on:
-      - "db"
-    command: [ "python3", "app.py" ]
-
-  db:
-    image: postgres
-    restart: always
-    environment:
-      POSTGRES_PASSWORD: rollbotpostgres

+ 0 - 29
stack.yml

@@ -1,29 +0,0 @@
-version: "3.1"
-
-services:
-
-  rollbot:
-    build: .
-    ports:
-      - "6071:6070"
-    restart: always
-    depends_on:
-      - "db"
-    networks:
-      hiramnet:
-        ipv4_address: "172.18.0.22"
-      default: {}
-
-  db:
-    image: postgres
-    restart: always
-    environment:
-      POSTGRES_PASSWORD: rollbotpostgres
-    volumes:
-      - "/opt/rollbot/data/postgres:/var/lib/postgresql/data"
-    networks:
-      - default
-
-networks:
-  hiramnet:
-    external: true