+4
-12
docker-compose-staging.yaml
+4
-12
docker-compose-staging.yaml
···
107
107
retries: 5
108
108
109
109
database:
110
-
build:
111
-
context: .
112
-
dockerfile: ./cmd/database/Dockerfile
110
+
image: ghcr.io/vylet-app/go/database:main
113
111
container_name: vylet-database
114
112
depends_on:
115
113
cassandra:
···
122
120
restart: unless-stopped
123
121
124
122
api:
125
-
build:
126
-
context: .
127
-
dockerfile: ./cmd/api/Dockerfile
123
+
image: ghcr.io/vylet-app/go/api:main
128
124
container_name: vylet-api
129
125
depends_on:
130
126
- database
···
136
132
restart: unless-stopped
137
133
138
134
firehose:
139
-
build:
140
-
context: .
141
-
dockerfile: ./cmd/bus/firehose/Dockerfile
135
+
image: ghcr.io/vylet-app/go/firehose:main
142
136
container_name: vylet-firehose
143
137
depends_on:
144
138
- kafka1
···
151
145
restart: unless-stopped
152
146
153
147
indexer:
154
-
build:
155
-
context: .
156
-
dockerfile: ./cmd/indexer/Dockerfile
148
+
image: ghcr.io/vylet-app/go/indexer:main
157
149
container_name: vylet-indexer
158
150
depends_on:
159
151
- kafka1