-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.txt
More file actions
27 lines (21 loc) · 948 Bytes
/
Copy pathnotes.txt
File metadata and controls
27 lines (21 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#Service to visualize the swarm on RPI
docker service create \
--name=viz \
--publish:8080:8080/tcp \
--constraint=node.role=manager \
--mount=type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
alexellis2/visualizer-arm:latest
#Service to manage docker swarm via a GUI
# To compress your magento code into a zip that gets .htaccess but ignores .gitignore
# Run the command in your magento code root directory writing your zip file the directory above
# even with the -9 it's still ~ 660M or so!
zip -9 -r ../magentopi.zip * -x .gitignore/\*
# having issues getting url rewrites / apache working correctly
# Should be something like this; looks like my Options and Order/Allow aren't correct. Probably need to have custom http.conf file to get this to work...
DocumentRoot /var/www
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>