We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e982aa commit 7f47356Copy full SHA for 7f47356
.github/workflows/publish.yml
@@ -2,7 +2,7 @@ name: Docker
2
3
on:
4
push:
5
- branches: [ main]
+ branches: [main]
6
workflow_dispatch:
7
8
env:
docker-compose.yml
@@ -2,14 +2,14 @@
services:
auth:
- image: evoc/auth:latest
+ image: ghcr.io/evolutionary-algorithms-on-click/auth_microservice:main
ports:
- "5000:5000"
- "5001:5001"
9
environment:
10
DATABASE_URL : postgresql://root@host.docker.internal:26257/defaultdb?sslmode=disable
11
- MAILER_EMAIL : <your-email>
12
- MAILER_PASSWORD : <your-password>
+ MAILER_EMAIL : <mailer-email>
+ MAILER_PASSWORD : <mailer-password>
13
FRONTEND_URL : http://localhost:3000
14
HTTP_PORT : 5000
15
GRPC_PORT : 5001
0 commit comments