Skip to content

Instantly share code, notes, and snippets.

@nickcoad
Last active June 7, 2019 05:33
Show Gist options
  • Save nickcoad/8dd68ee47ba92658d7f788c25eaeefbb to your computer and use it in GitHub Desktop.
Save nickcoad/8dd68ee47ba92658d7f788c25eaeefbb to your computer and use it in GitHub Desktop.
Adminer Dockerfile with custom css.
docker network create -d bridge --subnet 192.168.0.0/24 --gateway 192.168.0.1 myhostnet
docker build -t adminer .
docker run -p 9000:8080 --name adminer_container -d --restart always adminer
FROM adminer
WORKDIR /var/www/html
COPY ./adminer.css /var/www/html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment