Skip to content

Commit 2f71b44

Browse files
committed
Move out update section
1 parent 31fc50a commit 2f71b44

File tree

2 files changed

+47
-46
lines changed

2 files changed

+47
-46
lines changed

CHANGELOG.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
* Upgrade to 0.3.0:
3+
4+
- Devspace should be run in VM.
5+
- Services are managed by ansible playbook run with inline v1 compose
6+
7+
- It is possible to extend services using ansible playbook. If you already created new containers based on existing Dockerfiles, you may wish to review your customization and extend common services
8+
9+
* Upgrade to 0.2.0:
10+
11+
If you made custom adjustments to the code and committed them, it is recommended to reset changes.
12+
13+
Here are listed the most important changes:
14+
15+
* Compose configuration was split into a few different files depending on the platform
16+
17+
- docker-compose.yml main file
18+
- docker-compose.unixports.yml required for running container on UNIX platform
19+
- docker-compose.osx.yml required for running containers on OSX platform
20+
21+
For how to run check deployment
22+
23+
* All nodes are now systemd nodes that require adjusting the permissions. For what to change
24+
see deployment.
25+
26+
- **Do not change Dockerfile** as this will load your USERID automatically
27+
If you did it in the past remove the change.
28+
29+
- slave node:
30+
Since slave container user has changed from slave to omero.
31+
If you want to preserve the history, once you start your new devspace, you have to
32+
manually chown all files that belongs to slave user.
33+
34+
`find . -user slave -group slave -exec chown omero:omero`
35+
`find . -user slave -group 8000 -exec chown omero:8000`
36+
`usermod -u 1234 omero`
37+
38+
* Run `rename.py` to match your topic name. If you do not yet have
39+
topic branches available on origin, use "develop" or one of the
40+
main branches.
41+
42+
./rename.py MYTOPIC
43+
44+
Ignore the error

README.md

+3-46
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ Default packages:
300300
| Redis | latest | https://hub.docker.com/_/redis/ |
301301

302302

303-
# Customization:
303+
# Customization
304304

305305
* Updating omero-install scripts:
306306

@@ -324,7 +324,7 @@ Then fetch custom omero-install branch by updating each Dockerfile
324324
RUN git --git-dir=$OMERO_INSTALL_ROOT/.git --work-tree=$OMERO_INSTALL_ROOT fetch username
325325
RUN git --git-dir=$OMERO_INSTALL_ROOT/.git --work-tree=$OMERO_INSTALL_ROOT merge username/yourbranch
326326

327-
## Limitations:
327+
## Limitations
328328

329329
* Robot job is still under investigation as it fails due to webbrowser crash. Robot job requires manual changes of the domain. Make sure webhost is set to the correct VM IP e.g.
330330

@@ -333,47 +333,4 @@ Then fetch custom omero-install branch by updating each Dockerfile
333333

334334
# Upgrade
335335

336-
* Upgrade to 0.3.0:
337-
338-
- Devspace should be run in VM.
339-
- Services are managed by ansible playbook run with inline v1 compose
340-
341-
- It is possible to extend services using ansible playbook. If you already created new containers based on existing Dockerfiles, you may wish to review your customization and extend common services
342-
343-
* Upgrade to 0.2.0:
344-
345-
If you made custom adjustments to the code and committed them, it is recommended to reset changes.
346-
347-
Here are listed the most important changes:
348-
349-
* Compose configuration was split into a few different files depending on the platform
350-
351-
- docker-compose.yml main file
352-
- docker-compose.unixports.yml required for running container on UNIX platform
353-
- docker-compose.osx.yml required for running containers on OSX platform
354-
355-
For how to run check deployment
356-
357-
* All nodes are now systemd nodes that require adjusting the permissions. For what to change
358-
see deployment.
359-
360-
- **Do not change Dockerfile** as this will load your USERID automatically
361-
If you did it in the past remove the change.
362-
363-
- slave node:
364-
Since slave container user has changed from slave to omero.
365-
If you want to preserve the history, once you start your new devspace, you have to
366-
manually chown all files that belongs to slave user.
367-
368-
`find . -user slave -group slave -exec chown omero:omero`
369-
`find . -user slave -group 8000 -exec chown omero:8000`
370-
`usermod -u 1234 omero`
371-
372-
* Run `rename.py` to match your topic name. If you do not yet have
373-
topic branches available on origin, use "develop" or one of the
374-
main branches.
375-
376-
./rename.py MYTOPIC
377-
378-
Ignore the error
379-
336+
See [Changelog](CHANGELOG.md)

0 commit comments

Comments
 (0)