mirror of
https://github.com/pieartsy/PluralFlux.git
synced 2026-04-14 20:15:28 +10:00
* clear out fluxer.net * basic discord.js bot with ping, and echo * added creation of webhook * simplifying webhook logic * sending messages as webhook * deleting orignal message * adding sequelize file * commented out pgadmin part while it's not working * adding member sort of working * changing names of values * updating names of values and adding new method in memberHelper * renamed messagehelper function * deleted proxyhelper * passed only channel id into webhook helper methods * added new functions and got update working * changed message match to better reducer * adjusted webhook helper to use actual data * refactored bot.js and removed unused methods
34 lines
830 B
YAML
34 lines
830 B
YAML
services:
|
|
postgres:
|
|
image: postgres:latest
|
|
container_name: pluralflux-postgres
|
|
environment:
|
|
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_pwd
|
|
secrets:
|
|
- postgres_pwd
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql
|
|
ports:
|
|
- "5432:5432"
|
|
# pgadmin:
|
|
# image: dpage/pgadmin4:latest
|
|
# ports:
|
|
# - 5050:80
|
|
# environment:
|
|
# # Required by pgAdmin
|
|
# PGADMIN_DEFAULT_EMAIL: pieartsy@pm.me
|
|
# PGADMIN_DEFAULT_PASSWORD_FILE: /run/secrets/postgres_pwd
|
|
# # Don't require the user to login
|
|
# PGADMIN_CONFIG_SERVER_MODE: 'False'
|
|
# # Don't require a "master" password after logging in
|
|
# PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: 'False'
|
|
# secrets:
|
|
# - postgres_pwd
|
|
|
|
volumes:
|
|
pgdata:
|
|
|
|
secrets:
|
|
postgres_pwd:
|
|
file: ./secrets/postgres-password.txt
|