Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.73 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4.   db:
  5.     build:
  6.       context: ../images/postgres/
  7.       dockerfile: Dockerfile
  8.     image: talino-ris/postgres:11.2
  9.     restart: unless-stopped
  10.     ports:
  11.      - '5432:5432'
  12.     environment:
  13.       POSTGRES_DB: 'talino'
  14.       POSTGRES_USER: 'postgres'
  15.       POSTGRES_PASSWORD: 'postgres'
  16.     volumes:
  17.      - postgres-data:/var/lib/postgresql/data
  18.   minio:
  19.     image: minio/minio
  20.     ports:
  21.      - "9000:9000"
  22.     environment:
  23.       MINIO_ACCESS_KEY: '8IF0YHYC3P2GZ4SPHC8R'
  24.       MINIO_SECRET_KEY: '6Y7JDRrjFbVXiS1E9Vuhf8OOll3EcREno7BlfvIw'
  25.     volumes:
  26.      - minio-data:/export
  27.     command: server /export
  28.  
  29. volumes:
  30.   postgres-data:
  31.     driver: local
  32.   minio-data:
  33.     driver: local
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement