Skip to content

Commit

Permalink
docker-compose-without-phpmyadmin.yml (without PhpMyAdmin container) …
Browse files Browse the repository at this point in the history
…and docker-compose.yml (with PhpMyAdmin container)
  • Loading branch information
dodeeric committed May 2, 2019
1 parent ab8b1b4 commit 943f17b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Expand Up @@ -14,18 +14,6 @@ services:
MYSQL_USER: omeka
MYSQL_PASSWORD: omeka

pma:
depends_on:
- mariadb
image: phpmyadmin/phpmyadmin:latest
restart: always
networks:
- network1
ports:
- "8080:80"
links:
- mariadb:db

omeka:
depends_on:
- mariadb
Expand Down
12 changes: 12 additions & 0 deletions docker-compose.yml
Expand Up @@ -14,6 +14,18 @@ services:
MYSQL_USER: omeka
MYSQL_PASSWORD: omeka

pma:
depends_on:
- mariadb
image: phpmyadmin/phpmyadmin:latest
restart: always
networks:
- network1
ports:
- "8080:80"
links:
- mariadb:db

omeka:
depends_on:
- mariadb
Expand Down

0 comments on commit 943f17b

Please sign in to comment.