docker-compose.yml in netbox-client-ruby-0.1.0 vs docker-compose.yml in netbox-client-ruby-0.1.1

- old
+ new

@@ -1,8 +1,22 @@ version: '2' services: app: - build: . + build: + context: . + args: + RUBY_VERSION: 2.3.4 + image: netbox-client-ruby:2.3.4 + depends_on: + - nginx + volumes: + - .:/app + app24: + build: + context: . + args: + RUBY_VERSION: 2.4.1 + image: netbox-client-ruby:2.4.1 depends_on: - nginx volumes: - .:/app nginx: