File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
services :
2
2
# service configuration for our dockerized Rails app
3
-
3
+
4
4
netrunner_cards_json :
5
5
restart : none
6
- image : registry.digitalocean.com/nsgcr/netrunner-cards-json:latest
6
+ image : registry.digitalocean.com/nsgcr/netrunner-cards-json:${JSON_DATA_VERSION:- latest}
7
7
build : https://github.com/NetrunnerDB/netrunner-cards-json.git#main
8
8
volumes :
9
9
- netrunner-cards-json:/mnt/netrunner-cards-json
10
10
11
11
nrdb_api_server :
12
12
restart : unless-stopped
13
- image : registry.digitalocean.com/nsgcr/nrdb-api-server:latest
13
+ # Will use the latest image by default, but can be overridden with the API_SERVER_VERSION env var.
14
+ image : registry.digitalocean.com/nsgcr/nrdb-api-server:${API_SERVER_VERSION:-latest}
14
15
# build the Dockerfile next to this file, tag the built image with above image name
15
16
build : .
16
-
17
+
17
18
ports :
18
19
- " 3000:3000"
19
20
You can’t perform that action at this time.
0 commit comments