mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-03 03:27:13 +08:00

* Need a login check * chore: Add Discord OAuth2 authentication endpoint chore: Update dependencies and clean up code chore: Update dependencies, add Discord OAuth2 authentication endpoint, and clean up code chore: Update dependencies, add Google OAuth2 authentication endpoint, and clean up code Code clean up uniqueness on external account id chore: Add Discord and Google OAuth2 authentication endpoints, and update dependencies code review fixes * chore: Update prodHandler to use clienturl flag for Access-Control-Allow-Origin * chore: Refactor FetchDiscordIdByUsername and FetchGoogleIdByUsername to handle null values * chore: Set secure and same-site attributes for session cookie * chore: Set session cookie expiration to 3 months * Update callback URL for Oauth2 client in docker-compose and rogueserver.go * Update callback URL for Oauth2 client in docker-compose and rogueserver.go --------- Co-authored-by: Matthew Olker <matthew.olker@gmail.com>
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
services:
|
|
server:
|
|
command: --debug --dbaddr db --dbuser pokerogue --dbpass pokerogue --dbname pokeroguedb --gameurl http://localhost:8000 --callbackurl http://localhost:8001
|
|
image: ghcr.io/pagefaultgames/rogueserver:master
|
|
restart: unless-stopped
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
networks:
|
|
- internal
|
|
ports:
|
|
- "8001:8001"
|
|
|
|
db:
|
|
image: mariadb:11
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: [ "CMD", "healthcheck.sh", "--su-mysql", "--connect", "--innodb_initialized" ]
|
|
start_period: 10s
|
|
start_interval: 10s
|
|
interval: 1m
|
|
timeout: 5s
|
|
retries: 3
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: admin
|
|
MYSQL_DATABASE: pokeroguedb
|
|
MYSQL_USER: pokerogue
|
|
MYSQL_PASSWORD: pokerogue
|
|
volumes:
|
|
- database:/var/lib/mysql
|
|
networks:
|
|
- internal
|
|
|
|
# Watchtower is a service that will automatically update your running containers
|
|
# when a new image is available. This is useful for keeping your server up-to-date.
|
|
# see https://containrrr.dev/watchtower/ for more information.
|
|
watchtower:
|
|
image: containrrr/watchtower
|
|
container_name: watchtower
|
|
restart: always
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
environment:
|
|
WATCHTOWER_CLEANUP: true
|
|
WATCHTOWER_SCHEDULE: "@midnight"
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
volumes:
|
|
database:
|
|
|
|
networks:
|
|
internal:
|