Docker Compose Adminer

1.4k Views Asked by At

I want to use the adminer image that is raised with the following docker command:

docker run \
    --rm
    -p 8000:80
    -e MEMORY=512M
    -e UPLOAD=4096M
    dockette/adminer:full

My docker-compose.yml is as follows:

version: '2.4'
services:

  mariadb:
    container_name: mariadb-prueba
    image: mariadb
    restart: always
    volumes:
      - ./mariadb-data:/var/lib/mysql    
    environment:
      MYSQL_DATABASE: 'db_prueba'
      MYSQL_USER: 'admin'
      MYSQL_PASSWORD: 'admin'
      MARIADB_ROOT_PASSWORD: 'admin'
    ports:
      - 2000:3306
  adminer:
    container_name: adminerprueba
    image: dockette/adminer
    restart: always
    ports:
      - 8000:80
    environment:
      - UPLOAD=4096M
      - MEMORY=512M
volumes:
  mariadb-data: 

The problem is that it runs but when I do localhost:8000 the system appears to be down.

Am I missing something in the docker-compose

1

There are 1 best solutions below

0
On

Your docker compose file works fine for me.

I can access http://localhost:8000/ just fine and it brings up Adminer 4.8.1. As long as I put mariadb in as the server, admin/admin, it attaches to it.

Couple of things to try:

  1. Because YAML parses numbers in the format xx:yy as a base-60 value, you may want to quote your ports.
  2. You may already have something listening on 80 (try it out when the compose file is down)
  3. Even though yours works fine for me, you might want to grab the official image with instructions.

enter image description here