From: Guillaume Pellerin Date: Mon, 4 Jun 2018 09:56:43 +0000 (+0200) Subject: Add phpmyadmin separated container X-Git-Tag: 1.7.0~2^2~4^2~6 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=a6c995952e55adc92bf75b4a69170a8660081f97;p=telemeta.git Add phpmyadmin separated container --- diff --git a/env/phpmyadmin.yml b/env/phpmyadmin.yml new file mode 100644 index 00000000..902ca2ef --- /dev/null +++ b/env/phpmyadmin.yml @@ -0,0 +1,38 @@ + # -*- coding: utf-8 -*- +# +# Copyright (c) 2015-2016 Parisson SARL + +# This file is part of Telemeta. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. + +# TimeSide is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. + +# You should have received a copy of the GNU Affero General Public License +# along with TimeSide. If not, see . + +# Authors: +# Guillaume Pellerin +# Thomas Fillon + + +phpmyadmin: + image: nazarpc/phpmyadmin + ports: + - "1234:80" + links: + - db:mysql + environment: + - ABSOLUTE_URI=http://localhost:8000/phpmyadmin/ + +nginx: + links: + - phpmyadmin + +