We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51b6d4f commit 377f24fCopy full SHA for 377f24f
2 files changed
docker-compose.yml
@@ -12,6 +12,7 @@ services:
12
- ./logs/nginx/:/var/log/nginx
13
ports:
14
- "80:80"
15
+ - "443:443"
16
links:
17
- php-fpm
18
@@ -132,5 +133,6 @@ services:
132
133
build: ./workspace
134
volumes_from:
135
- data
136
+ tty: true
137
138
### Add more Containers below ###############################
workspace/Dockerfile
@@ -37,9 +37,8 @@ RUN curl -s http://getcomposer.org/installer | php \
37
&& alias composer='/usr/local/bin/composer.phar'
38
39
# Clean up
40
-RUN rm -r /var/lib/apt/lists/*
41
-
42
-ENTRYPOINT ["top", "-b"]
+RUN apt-get clean \
+ && rm -r /var/lib/apt/lists/*
43
44
WORKDIR /var/www/laravel
45
0 commit comments