Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
version: "3.7"

services:

mysqldb:
image: mysql:9.0.1
container_name: BAR_mysqldb
# Must use this for mariadb client to connect
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
- MYSQL_ROOT_PASSWORD=root
Expand Down
4 changes: 2 additions & 2 deletions docs/source/installation_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Run on your own computer with Docker

.. code-block:: bash

docker-compose build
docker compose build

6. Run docker containers (-d is detached)

.. code-block:: bash

docker-compose up -d
docker compose up -d

7. Load ``http://localhost:5000/`` in a web browser. Enjoy :)

Expand Down