mirror of
https://github.com/different-ai/openwork
synced 2026-04-26 01:25:10 +02:00
* feat(web): add local Den dev stack * fix(web): stabilize mobile Den worker cards * fix(web): default empty Den state to new worker * Add Google auth to Den signup (#847) * feat(den): add google auth provider * feat(web): add social signup buttons for den --------- Co-authored-by: jcllobet <jcllobet@users.noreply.github.com> --------- Co-authored-by: Jan <jc2897@cornell.edu> Co-authored-by: jcllobet <jcllobet@users.noreply.github.com>
21 lines
487 B
YAML
21 lines
487 B
YAML
services:
|
|
mysql:
|
|
image: mysql:8.4
|
|
container_name: openwork-web-local-mysql
|
|
ports:
|
|
- "3306:3306"
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: password
|
|
MYSQL_DATABASE: openwork_den
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "mysqladmin ping -h 127.0.0.1 -ppassword --silent"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 30
|
|
start_period: 10s
|
|
volumes:
|
|
- openwork-web-local-mysql-data:/var/lib/mysql
|
|
|
|
volumes:
|
|
openwork-web-local-mysql-data:
|