Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add here preconfigured authorization for adminer (https://github.com/TimWolla/do... #10

Open
github-actions bot opened this issue Sep 8, 2023 · 0 comments
Labels

Comments

@github-actions
Copy link

github-actions bot commented Sep 8, 2023

https://api.github.com/vorant94/sofash/blob/fcb3ff714b19baf963f745027eebdd11e63af32c/docker-compose.yml#L32

version: '3'

services:
#  server:
#    build: .
#    hostname: server
#    restart: unless-stopped
#    environment:
#      NODE_ENV: 'DEV'
#      DB_HOST: 'postgres'
#      MQ_HOST: 'redis-stack'
#      TG_BOT_TOKEN: 'xxx'
#      TG_BOT_WEBHOOK_URL: 'xxx'
#    ports:
#      - "3000:3000"
#    depends_on:
#      - postgres
#      - redis-stack

  postgres:
    image: postgres
    hostname: postgres
    restart: unless-stopped
    ports:
      - "5432:5432"
    volumes:
      - "./.docker/postgres/data:/var/lib/postgresql/data"
    environment:
      POSTGRES_USER: sofash
      POSTGRES_PASSWORD: password

  # TODO add here preconfigured authorization for adminer (https://github.com/TimWolla/docker-adminer/issues/13)
  adminer:
    image: adminer
    hostname: adminer
    restart: unless-stopped
    ports:
      - "8080:8080"
    environment:
      ADMINER_DEFAULT_SERVER: 'postgres'
    depends_on:
      - postgres

  redis-stack:
    image: redis/redis-stack
    hostname: redis-stack
    restart: unless-stopped
    ports:
      - "6379:6379"
      - "8001:8001"
    volumes:
      - "./.docker/redis-stack/data:/data"
@github-actions github-actions bot added the todo label Sep 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

0 participants