34 lines
No EOL
616 B
YAML
34 lines
No EOL
616 B
YAML
---
|
|
services:
|
|
bot:
|
|
container_name: hypixel-auc-notifier
|
|
build: .
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- db
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
NODE_ENV: "production"
|
|
DB_HOST: db
|
|
DB_USER: root
|
|
DB_PASSWORD: example
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- ./config.json:/app/dist/src/config.json
|
|
|
|
|
|
db:
|
|
image: mariadb
|
|
restart: always
|
|
environment:
|
|
MARIADB_ROOT_PASSWORD: example
|
|
|
|
adminer:
|
|
image: adminer
|
|
restart: always
|
|
depends_on:
|
|
- db
|
|
ports:
|
|
- 8080:8080 |