Skip to content

Commit

Permalink
fix: docker & change port
Browse files Browse the repository at this point in the history
  • Loading branch information
David200308 committed Jan 14, 2025
1 parent 66ce26b commit a055ab0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Backend/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
MYSQL_ROOT_PASSWORD_FILE: /run/secrets/mysql_root_password
MYSQL_DATABASE: AUTHDB
volumes:
- mysql_data:/var/lib/mysql
- db_data:/var/lib/mysql
- ./init-db.sh:/docker-entrypoint-initdb.d/init-db.sh
- ./database.sql:/docker-entrypoint-initdb.d/database.sql
secrets:
Expand All @@ -87,7 +87,7 @@ services:
volumes:
letsencrypt:
driver: local
mysql_data:
db_data:
driver: local
redis:
driver: local
Expand Down
2 changes: 1 addition & 1 deletion Backend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ async function bootstrap() {
origin: process.env.PASSKEY_ORIGIN,
});

await app.listen(3001);
await app.listen(3000);
}
bootstrap();

0 comments on commit a055ab0

Please sign in to comment.