Skip to content

Commit

Permalink
change default
Browse files Browse the repository at this point in the history
  • Loading branch information
C4illin committed Mar 18, 2024
1 parent 16a3248 commit 8be54e6
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ version: '3'
services:
chs-mc-website:
image: ghcr.io/gudchalmers/chs-mc-website:main
container_name: chs-mc-website
restart: unless-stopped
ports:
- "3000:3000"
Expand All @@ -48,24 +47,21 @@ services:
DB_USER: chs-mc-website
DB_PASS: hunter2
DB_NAME: mc_stats
DB_HOST: mariadb:3306
DB_HOST: mariadb
MAIL_FROM: [email protected]
MAIL_NAME: "Your Name"
MAIL_HOST: sandbox.smtp.mailtrap.io
MAIL_PORT: 2525
MAIL_HOST: smtp-relay.gmail.com
MAIL_PORT: 465
MAIL_USER: whatever
MAIL_PASS: hunter2
MAIL_SSL: false
MAIL_SSL: true
depends_on:
- mariadb
mariadb:
image: mariadb:11
container_name: mariadb
volumes:
- mariadb:/var/lib/mysql
restart: unless-stopped
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: hunter2
MYSQL_DATABASE: mc_stats
Expand Down

0 comments on commit 8be54e6

Please sign in to comment.