Description
Hello guys,
Thanks for this nicely packaged contribution, I'm new to docker and still trying to figure out how this all works. I got phpipam and some agents on a docker-compose.yml, working with mysql 5.7 container :
`services:
mysql:
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=*************
restart: always
volumes:
- db_data:/var/lib/mysqlBD
ipam:
depends_on:
- mysql
image: pierrecdn/phpipam
restart: always
environment:
- MYSQL_ENV_MYSQL_USER=root
- MYSQL_ENV_MYSQL_ROOT_PASSWORD=*************
- MYSQL_ENV_MYSQL_HOST=mysql
#command: ['apache2', '-D', 'FOREGROUND', '-c', '"Alias "${IPAM_BASE:-/}" "/phpipam/""']
ports:
- "80:80"
ipam-agent-TLS:
depends_on:
- mysql
image: pierrecdn/phpipam-agent
environment:
- MYSQL_ENV_MYSQL_PASSWORD=*************
- PHPIPAM_AGENT_KEY=hNouWhaQQULyNtqyiDXn-C2ezdZksfsNw
- PHPIPAM_SCAN_INTERVAL=30m`
I want to upgrade this phpipam 1.5.2 version to 1.6.0, but clearly I have no clue how to do it. I thought rebuilding the container will do, but apparently not.
Could you please guide me through this please, I'd really appreciate a quick helping words ^^
Have a great day.
NOTA : Apparently the feature to stop pings isn't working, if someone noticed that as well...
Justine