From a0091116bc714a89c0c933fbf9bfe734e6378629 Mon Sep 17 00:00:00 2001 From: Fred Clausen <43556888+fredclausen@users.noreply.github.com> Date: Thu, 26 Oct 2023 13:25:23 -0600 Subject: [PATCH] Update README.md --- README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 93bbf8a..74b80e3 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ docker run -d \ -e FAM_INSTALLPASSWORD="very_secure_password_12345" \ -v flightairmap_db:/var/lib/mysql \ -v flightairmap_webapp:/var/www/flightairmap \ - mikenye/flightairmap + ghcr.io/sdr-enthusiasts/docker-flightairmap:latest ``` On the first run of the container, the database will be created & populated and data will be downloaded from the internet. This process can take quite some time. On my system, around 30 minutes. Once the first run processes are finished, to access FlightAirMap, you can: @@ -68,7 +68,7 @@ volumes: services: flightairmap: - image: mikenye/flightairmap:latest + image: ghcr.io/sdr-enthusiasts/docker-flightairmap:latest tty: true container_name: flightairmap restart: always @@ -120,11 +120,9 @@ services: - MYSQL_PASSWORD=xi6Paig4yeitae3Pah9aew3j volumes: - fam_db:/var/lib/mysql - networks: - - flightairmap flightairmap: - image: famtest:latest + image: ghcr.io/sdr-enthusiasts/docker-flightairmap:latest tty: true container_name: flightairmap restart: always @@ -141,8 +139,6 @@ services: - MYSQLROOTPASSWORD=shai5Eisah7phe0aic5foote volumes: - fam_webapp:/var/www/flightairmap - networks: - - flightairmap depends_on: - flightairmap_db ```