Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisnharvey committed Nov 15, 2020
1 parent 7a676d9 commit 0d205f7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 23 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased](https://github.com/chrisnharvey/magicLAMP/compare/master...develop)

## v1.4.0

### New

- PHP 8.0 RC3
- Composer 2

## v1.3.9

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion containers/workspace/home/.magiclamprc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MAGICLAMP_VERSION="1.3"
MAGICLAMP_VERSION="1.4"
44 changes: 22 additions & 22 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
nginx:
image: chrisnharvey/magiclamp-nginx:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-nginx:${MAGICLAMP_VERSION:-1.4}

volumes:
- ${PROJECTS_DIR:-./data/projects}:/projects
Expand All @@ -17,7 +17,7 @@ services:
ipv4_address: 10.0.10.10

postgres:
image: chrisnharvey/magiclamp-postgres:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-postgres:${MAGICLAMP_VERSION:-1.4}

ports:
- 5432:5432
Expand All @@ -30,7 +30,7 @@ services:
ipv4_address: 10.0.10.15

pgadmin:
image: chrisnharvey/magiclamp-pgadmin:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-pgadmin:${MAGICLAMP_VERSION:-1.4}

networks:
app_net:
Expand All @@ -49,7 +49,7 @@ services:
- dns_internal

mysql:
image: chrisnharvey/magiclamp-mysql:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-mysql:${MAGICLAMP_VERSION:-1.4}

volumes:
- mysql_data:/var/lib/mysql
Expand All @@ -67,7 +67,7 @@ services:
ipv4_address: 10.0.10.20

phpmyadmin:
image: chrisnharvey/magiclamp-phpmyadmin:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-phpmyadmin:${MAGICLAMP_VERSION:-1.4}

networks:
app_net:
Expand All @@ -80,7 +80,7 @@ services:
- MYSQL_ROOT_PASSWORD=gg

mailcatcher:
image: chrisnharvey/magiclamp-mailcatcher:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-mailcatcher:${MAGICLAMP_VERSION:-1.4}

ports:
- 1025:1025
Expand All @@ -90,7 +90,7 @@ services:
ipv4_address: 10.0.10.25

workspace:
image: chrisnharvey/magiclamp-workspace:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-workspace:${MAGICLAMP_VERSION:-1.4}

volumes:
- ${PROJECTS_DIR:-./data/projects}:/projects
Expand All @@ -113,14 +113,14 @@ services:
ipv4_address: 10.0.10.5

dns_internal:
image: chrisnharvey/magiclamp-dns-internal:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-dns-internal:${MAGICLAMP_VERSION:-1.4}

networks:
app_net:
ipv4_address: 10.0.10.2

dns:
image: chrisnharvey/magiclamp-dns:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-dns:${MAGICLAMP_VERSION:-1.4}

ports:
- 127.0.0.1:53:53/udp
Expand All @@ -129,7 +129,7 @@ services:


redis:
image: chrisnharvey/magiclamp-redis:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-redis:${MAGICLAMP_VERSION:-1.4}

ports:
- 6379:6379
Expand All @@ -139,7 +139,7 @@ services:
ipv4_address: 10.0.10.21

memcached:
image: chrisnharvey/magiclamp-memcached:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-memcached:${MAGICLAMP_VERSION:-1.4}

ports:
- 11211:11211
Expand All @@ -149,7 +149,7 @@ services:
ipv4_address: 10.0.10.11

elasticsearch:
image: chrisnharvey/magiclamp-elasticsearch:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-elasticsearch:${MAGICLAMP_VERSION:-1.4}

ports:
- 9200:9200
Expand All @@ -163,7 +163,7 @@ services:
ipv4_address: 10.0.10.92

rabbitmq:
image: chrisnharvey/magiclamp-rabbitmq:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-rabbitmq:${MAGICLAMP_VERSION:-1.4}

hostname: magiclamp-rabbitmq

Expand All @@ -183,7 +183,7 @@ services:
ipv4_address: 10.0.10.67

selenium_chrome:
image: chrisnharvey/magiclamp-selenium-chrome:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-selenium-chrome:${MAGICLAMP_VERSION:-1.4}

ports:
- 4444:4444
Expand All @@ -202,7 +202,7 @@ services:
- dns_internal

selenium_firefox:
image: chrisnharvey/magiclamp-selenium-firefox:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-selenium-firefox:${MAGICLAMP_VERSION:-1.4}

ports:
- 5555:4444
Expand All @@ -221,7 +221,7 @@ services:
- dns_internal

php56:
image: chrisnharvey/magiclamp-php56:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-php56:${MAGICLAMP_VERSION:-1.4}

volumes:
- ${PROJECTS_DIR:-./data/projects}:/projects
Expand All @@ -240,7 +240,7 @@ services:
- dns_internal

php70:
image: chrisnharvey/magiclamp-php70:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-php70:${MAGICLAMP_VERSION:-1.4}

volumes:
- ${PROJECTS_DIR:-./data/projects}:/projects
Expand All @@ -259,7 +259,7 @@ services:
- dns_internal

php71:
image: chrisnharvey/magiclamp-php71:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-php71:${MAGICLAMP_VERSION:-1.4}

volumes:
- ${PROJECTS_DIR:-./data/projects}:/projects
Expand All @@ -278,7 +278,7 @@ services:
- dns_internal

php72:
image: chrisnharvey/magiclamp-php72:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-php72:${MAGICLAMP_VERSION:-1.4}

volumes:
- ${PROJECTS_DIR:-./data/projects}:/projects
Expand All @@ -297,7 +297,7 @@ services:
- dns_internal

php73:
image: chrisnharvey/magiclamp-php73:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-php73:${MAGICLAMP_VERSION:-1.4}

volumes:
- ${PROJECTS_DIR:-./data/projects}:/projects
Expand All @@ -316,7 +316,7 @@ services:
- dns_internal

php74:
image: chrisnharvey/magiclamp-php74:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-php74:${MAGICLAMP_VERSION:-1.4}

volumes:
- ${PROJECTS_DIR:-./data/projects}:/projects
Expand All @@ -335,7 +335,7 @@ services:
- dns_internal

php80:
image: chrisnharvey/magiclamp-php80:${MAGICLAMP_VERSION:-1.3}
image: chrisnharvey/magiclamp-php80:${MAGICLAMP_VERSION:-1.4}

volumes:
- ${PROJECTS_DIR:-./data/projects}:/projects
Expand Down

0 comments on commit 0d205f7

Please sign in to comment.