I'm trying to follow the instructions on https://docs.docker.com/get-started/part3/ but changing it to a single node MariaDB database. I am using a docker-compose.yml file that looks like this...
version: "3"
services:
database:
image: mariadb:latest
environment:
MYSQL_DATABASE: jeesample
MYSQL_USER: jeeuser
MYSQL_PASSWORD: password
networks:
- webnet
ports:
- "3307:3306"
networks:
webnet:
Then I start it using
docker stack deploy -c docker-compose.yml jeesample
However, when I look at docker stack ps jeesample I get the following:
ID NAME IMAGE NODE DESIRED STATE CURRENT STATE ERROR PORTS
9yjyzmi86aqm jeesample_database.1 mariadb:latest moby Running Running less than a second ago
gqamjzc2u1fw \_ jeesample_database.1 mariadb:latest moby Shutdown Failed 6 seconds ago "task: non-zero exit (1)"
615zc8s0rts1 \_ jeesample_database.1 mariadb:latest moby Shutdown Failed 18 seconds ago "task: non-zero exit (1)"
pod5ldwn6p6v \_ jeesample_database.1 mariadb:latest moby Shutdown Failed 27 seconds ago "task: non-zero exit (1)"
ma1gkri9os14 \_ jeesample_database.1 mariadb:latest moby Shutdown Failed 37 seconds ago "task: non-zero exit (1)"
Trying to connect to it using jdbc:mariadb://localhost:3307/jeesample from a SQL client on my local machine fails because I am unable to connect