SHARE
TWEET

Untitled

a guest Sep 25th, 2019 157 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. version: '3.1'
  2.  
  3. services:
  4.     gateway:
  5.       container_name: gateway
  6.       image: <container-registry>/gateway
  7.       ports:
  8.      - 80:8000
  9.  
  10.     webclient:
  11.       container_name: webclient
  12.       image: <container-registry>/webclient
  13.      
  14.     pdf:
  15.       container_name: pdf
  16.       image: <container-registry>/reporting
  17.      
  18.     test:
  19.       container_name: test
  20.       image: <container-registry>/test
  21.      
  22.     db:
  23.       container_name: db
  24.       image: <container-registry>/db
  25.  
  26.     storage:
  27.       container_name: storage
  28.       image: <container-registry>/storage
  29.       environment:
  30.      - PGUSER=postgres
  31.       - PGHOST=db
  32.       - PGDATABASE=postgres
  33.       - PGPASSWORD=postgres
  34.       - PGPORT=5432
  35.       depends_on:
  36.      - db
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top