diff --git a/README_docker.md b/README_docker.md index 00630ff22ba45c1dad7d1634837f407e9ff4281a..6424782864fd0b09902935e01fb5e5b0d5698221 100644 --- a/README_docker.md +++ b/README_docker.md @@ -10,6 +10,11 @@ Change database connection inside registration-system/config.local.php from "localhost" to "db" +You might additionally adjust the base url inside the same config file: +``` +$config_baseurl = "http://localhost:8080/"; +``` + ### Step 3 Build and start up the containers ``` @@ -28,6 +33,7 @@ chmod 777 config_current_fahrt_id cp passwd/users.example.txt passwd/users.txt ``` +### Step 6 Open http://localhost:8080 in your browser Admin interface is at http://localhost:8080/admin (login with sudo:password) diff --git a/docker-compose.yml b/docker-compose.yml index 6006e7b255aece73afe68ada3ba8fc5267e113be..0961d812320001209898d9ca2d46cca6dbcc7068 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -31,5 +31,5 @@ db: - "3306" volumes: - ./mysql_data:/var/lib/mysql - - ./registration-system/other/sqlDumps/init_20170421.sql:/dump.sql:ro + - ./registration-system/other/sqlDumps/init_20180118.sql:/dump.sql:ro