mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
feat(web): add local Den dev stack (#855)
* 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>
This commit is contained in:
20
packaging/docker/docker-compose.web-local.yml
Normal file
20
packaging/docker/docker-compose.web-local.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
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:
|
||||
Reference in New Issue
Block a user