diff --git a/docker-compose.yml b/docker-compose.yml index b78e3fe..6f80440 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,15 +3,18 @@ services: redis: image: redis:6 - ports: - - 6380:6379 - mysql: - image: mysql:8 - command: - - '--default-authentication-plugin=mysql_native_password' + adminer: + image: adminer + restart: always environment: - - MYSQL_DATABASE=db - - MYSQL_ROOT_PASSWORD=UNSAFE_DEV_PASSWORD + - ADMINER_DEFAULT_SERVER=postgres ports: - - 32342:3306 + - 42655:8080 + + postgres: + image: postgres:13.3 + environment: + - POSTGRES_USER=root + - POSTGRES_DB=db + - POSTGRES_PASSWORD=UNSAFE_DEV_PASSWORD diff --git a/latus.yml b/latus.yml index a27190f..975830c 100644 --- a/latus.yml +++ b/latus.yml @@ -80,7 +80,6 @@ ], } '@latus/http/server': { - devPublic: 'humus.localhost', request.page: [ '@latus/user/session/server', '@latus/user/server',