We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://api.github.com/vorant94/sofash/blob/fcb3ff714b19baf963f745027eebdd11e63af32c/docker-compose.yml#L32
The text was updated successfully, but these errors were encountered: