You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+46
Original file line number
Diff line number
Diff line change
@@ -8,3 +8,49 @@ The project provides also a Graphical user Interface that allows for easing the
8
8
For further information, please refer to the istSOS website: <http://istsos.org/>
9
9
10
10
istSOS is released under the GPL License, and runs on all major platforms (Windows, Linux, Mac OS X), even though tests were conducted under a Linux environment.
11
+
12
+
13
+
## Start istSOS with docker-compose
14
+
15
+
The faste way to use istSOS is with docker.
16
+
17
+
Create a docker-compose.yml file:
18
+
19
+
```bash
20
+
version: '3.7'
21
+
22
+
services:
23
+
istsos-db:
24
+
image: postgis/postgis:12-2.5-alpine
25
+
restart: always
26
+
container_name: istsos-db
27
+
environment:
28
+
POSTGRES_USER: postgres
29
+
POSTGRES_PASSWORD: postgres
30
+
POSTGRES_DB: istsos
31
+
TZ: Europe/Zurich
32
+
volumes:
33
+
- istsos-db-data:/var/lib/postgresql/data
34
+
35
+
istsos:
36
+
image: istsos/istsos:2.4.1
37
+
container_name: istsos
38
+
restart: always
39
+
ports:
40
+
- 80:80
41
+
42
+
volumes:
43
+
istsos-db-data:
44
+
name: istsos-db-data
45
+
46
+
```
47
+
48
+
And start the containers by running the following command:
49
+
50
+
51
+
```bash
52
+
docker-compose up -d
53
+
```
54
+
55
+
Open your browser and go to http://localhost/istsos/admin you should be able to see the web admin page.
56
+
Before creating a new istsos service instance go to the "Database" page and set "istsos-db" as Host.
0 commit comments