tangled
alpha
login
or
join now
hailey.at
/
vylet-go
1
fork
atom
this repo has no description
1
fork
atom
overview
issues
pulls
pipelines
tweak staging dockerfile
hailey.at
3 months ago
4a0c9b75
72569063
+4
-12
1 changed file
expand all
collapse all
unified
split
docker-compose-staging.yaml
+4
-12
docker-compose-staging.yaml
···
107
107
retries: 5
108
108
109
109
database:
110
110
-
build:
111
111
-
context: .
112
112
-
dockerfile: ./cmd/database/Dockerfile
110
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
125
-
build:
126
126
-
context: .
127
127
-
dockerfile: ./cmd/api/Dockerfile
123
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
139
-
build:
140
140
-
context: .
141
141
-
dockerfile: ./cmd/bus/firehose/Dockerfile
135
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
154
-
build:
155
155
-
context: .
156
156
-
dockerfile: ./cmd/indexer/Dockerfile
148
148
+
image: ghcr.io/vylet-app/go/indexer:main
157
149
container_name: vylet-indexer
158
150
depends_on:
159
151
- kafka1