Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
this might be more clearthis one for instance, does it make sense ? creecros/resourcespace-docker
I feel for you. I’m in the same position. I’ll be like Basil.my weekend will be learning about docker lol
I had a prof, who when failing to correctly illustrate a proof, would stop and label the conclusion "IOCO" (in lieu of QED)... meaning "intuitively obvious to the casual observer", leaving his befuddled students to sort out the problem.In general I also agree alot of Docker images come with total lack of documentation how to install/use them..
version: '2.2'
services:
resourcespace-app:
image: creecros/resourcespace-docker:latest
restart: unless-stopped
container_name: resourcespace
ports:
# change host port 8888 to whatever you need
# host:container/protocol
- 8888:80/tcp
volumes:
- include:/include
- filestore:/filestore
resourcespace-mysql:
image: mysql:5.6
restart: unless-stopped
container_name: resourcespace-mysql
environment:
MYSQL_DATABASE: resourcespace
MYSQL_ROOT_PASSWORD: Un1c0rn
volumes:
- database:/var/lib/mysql
volumes:
filestore:
driver: local
driver_opts:
type: none
# change path in device to an existing path on your diskstation!
device: /volume1/docker/resourcespace/filestore
o: bind
include:
driver: local
driver_opts:
type: none
# change path in device to an existing path on your diskstation!
device: /volume1/docker/resourcespace/include
o: bind
database:
driver: local
driver_opts:
type: none
# change path in device to an existing path on your diskstation!
device: /volume1/docker/resourcespace/database
o: bind
docker-compose.yml
on your ds (e.g. in /volume1/docker/resourcespace) . Make sure that the folders used in device exist before a docker-compose up -d
is called, otherwise the command will raise an error.I had a prof, who when failing to correctly illustrate a proof, would stop and label the conclusion "IOCO" (in lieu of QED)... meaning "intuitively obvious to the casual observer", leaving his befuddled students to sort out the problem.
That's the sense I get with mots Docker images where there's no explanation of how to implement it... because it's IOCO![]()
Thanks that would be great if you are able toI'll get around to see how it works in a few days when I get the time. No need for any $$. Glad to help out if and when I can.
Make sure to store the content of aboves block in a file calleddocker-compose.yml
on your ds (e.g. in /volume1/docker/resourcespace) . Make sure that the folders used in device exist before adocker-compose up -d
is called, otherwise the command will raise an error.
In case you don't want to use port 8888 on your DS, replace the port to a free port of your choosing. If you want to store the data in a different location, make sure to change the values of the device lines.
Good luck!
We use essential cookies to make this site work, and optional cookies to enhance your experience.