There was an error while loading. Please reload this page.
1 parent 8f4ace7 commit 8975616Copy full SHA for 8975616
1 file changed
docker-compose.yml
@@ -1,15 +1,17 @@
1
services:
2
siren:
3
- image: siren-now
+ image: sigp/siren:latest
4
ports:
5
- '443:443' # comment this line when using `SSL_ENABLED=false`
6
# - "80:80" # uncomment this line when using `SSL_ENABLED=false`
7
- # Will persist backend data across runs. Remove this folder if Siren fails
8
- # to start
9
- volumes:
10
- - ./backend_data:/app/backend/.db
11
env_file:
12
- .env
+ volumes:
+ - siren_data:/app/backend/.db
+
13
# uncomment these 2 lines if you use docker on linux and want to use the special host `host.docker.internal` as your BN/VC address
14
# extra_hosts:
15
# - "host.docker.internal:host-gateway"
16
+volumes:
17
+ siren_data:
0 commit comments