Advertisement
Toliak

docker-compose.yml

Sep 11th, 2019
1,299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.89 KB | None | 0 0
  1. version: '3'
  2. services:
  3.   db:
  4.     image: postgres:9.6.14-alpine
  5.     ports:
  6.     - "5432:5432"
  7.     volumes:
  8.     - ./pgdata:/var/lib/postgresql/data
  9.     environment:
  10.     - POSTGRES_USER=g_host
  11.      - POSTGRES_PASSWORD=g_host
  12.   adminer:
  13.     image: adminer:4.7.1-standalone
  14.     ports:
  15.     - "8081:8080"
  16.   omnidb:
  17.     image: taivokasper/omnidb:v2.15.0-alpine_3.9
  18.     ports:
  19.     - "8080:8080"
  20.      - "25482:25482"
  21.     user: "1000:1000"
  22.     volumes:
  23.     - $PWD/config-omnidb:/etc/omnidb
  24.   minio:
  25.     image: minio/minio
  26.     ports:
  27.     - "9000:9000"
  28.     environment:
  29.       MINIO_ACCESS_KEY: minio
  30.       MINIO_SECRET_KEY: minio123
  31.     volumes:
  32.     - ./minio:/data
  33.     command: server /data
  34.   nginx:
  35.     image: nginx:1.17.0-alpine
  36.     ports:
  37.     - "80:80"
  38.     volumes:
  39.     - $PWD/nginx.conf:/etc/nginx/nginx.conf
  40.      - $PWD/html:/etc/nginx/html:ro
  41.     network_mode: host
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement