mirror of
https://github.com/jbowdre/phpipam-agent-docker.git
synced 2024-11-22 15:02:19 +00:00
update parameter names
This commit is contained in:
parent
18abfd9446
commit
f40dbbe08f
3 changed files with 12 additions and 12 deletions
10
Dockerfile
10
Dockerfile
|
@ -39,11 +39,11 @@ WORKDIR /opt/phpipam-agent
|
||||||
RUN cp config.dist.php config.php && \
|
RUN cp config.dist.php config.php && \
|
||||||
sed -i -e "s/\['key'\] = .*;/\['key'\] = getenv(\"PHPIPAM_AGENT_KEY\");/" \
|
sed -i -e "s/\['key'\] = .*;/\['key'\] = getenv(\"PHPIPAM_AGENT_KEY\");/" \
|
||||||
-e "s/\['pingpath'\] = .*;/\['pingpath'\] = \"\/usr\/sbin\/fping\";/" \
|
-e "s/\['pingpath'\] = .*;/\['pingpath'\] = \"\/usr\/sbin\/fping\";/" \
|
||||||
-e "s/\['db'\]\['host'\] = \"localhost\"/\['db'\]\['host'\] = getenv(\"MYSQL_ENV_MYSQL_HOST\")/" \
|
-e "s/\['db'\]\['host'\] = \"localhost\"/\['db'\]\['host'\] = getenv(\"PHPIPAM_DB_HOST\")/" \
|
||||||
-e "s/\['db'\]\['user'\] = \"phpipam\"/\['db'\]\['user'\] = getenv(\"MYSQL_ENV_MYSQL_USER\")/" \
|
-e "s/\['db'\]\['user'\] = \"phpipam\"/\['db'\]\['user'\] = getenv(\"PHPIPAM_DB_USER\")/" \
|
||||||
-e "s/\['db'\]\['pass'\] = \"phpipamadmin\"/\['db'\]\['pass'\] = getenv(\"MYSQL_ENV_MYSQL_PASSWORD\")/" \
|
-e "s/\['db'\]\['pass'\] = \"phpipamadmin\"/\['db'\]\['pass'\] = getenv(\"PHPIPAM_DB_PASS\")/" \
|
||||||
-e "s/\['db'\]\['name'\] = \"phpipam\"/\['db'\]\['name'\] = getenv(\"MYSQL_ENV_MYSQL_DATABASE\")/" \
|
-e "s/\['db'\]\['name'\] = \"phpipam\"/\['db'\]\['name'\] = getenv(\"PHPIPAM_DB_NAME\")/" \
|
||||||
-e "s/\['db'\]\['port'\] = 3306/\['db'\]\['port'\] = getenv(\"MYSQL_ENV_MYSQL_PORT\")/" \
|
-e "s/\['db'\]\['port'\] = 3306/\['db'\]\['port'\] = getenv(\"PHPIPAM_DB_PORT\")/" \
|
||||||
config.php \
|
config.php \
|
||||||
\
|
\
|
||||||
&& chmod +x /entrypoint.sh \
|
&& chmod +x /entrypoint.sh \
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
case "$SCAN_INTERVAL" in
|
case "$PHPIPAM_SCAN_INTERVAL" in
|
||||||
5m) CRON_S="*/5 *"
|
5m) CRON_S="*/5 *"
|
||||||
;;
|
;;
|
||||||
10m) CRON_S="*/10 *"
|
10m) CRON_S="*/10 *"
|
||||||
|
|
|
@ -5,11 +5,11 @@ services:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: jbowdre/phpipam-agent:latest
|
image: jbowdre/phpipam-agent:latest
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_ENV_MYSQL_HOST=ipamhost
|
- PHPIPAM_DB_HOST=ipamhost
|
||||||
- MYSQL_ENV_MYSQL_DATABASE=phpipam
|
- PHPIPAM_DB_NAME=phpipam
|
||||||
- MYSQL_ENV_MYSQL_USER=phpipam
|
- PHPIPAM_DB_USER=phpipam
|
||||||
- MYSQL_ENV_MYSQL_PASSWORD=phpipamadmin
|
- PHPIPAM_DB_PASS=phpipamadmin
|
||||||
- MYSQL_ENV_MySQL_PORT=3306
|
- PHPIPAM_DB_PORT=3306
|
||||||
- PHPIPAM_AGENT_KEY=2RuQ0rt4Rir29vGN4_1ZOqShcUX7PSUb
|
- PHPIPAM_AGENT_KEY=2RuQ0rt4Rir29vGN4_1ZOqShcUX7PSUb
|
||||||
- SCAN_INTERVAL=15m
|
- PHPIPAM_SCAN_INTERVAL=15m
|
||||||
- TZ=UTC
|
- TZ=UTC
|
||||||
|
|
Loading…
Reference in a new issue