Skip to content

Commit

Permalink
fix: update production config
Browse files Browse the repository at this point in the history
  • Loading branch information
gregfrasco committed Apr 3, 2023
1 parent 15255c8 commit 0246061
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions deployment/docker-compose-production.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
version: '3'
services:
auth-frontend:
container_name: auth-client
image: hicsail/auth-client:latest
restart: always
ports:
- 3002:80
env_file:
- ../stack.env
auth-admin:
container_name: auth-admin
image: hicsail/auth-admin-client:latest
restart: always
ports:
- 3004:80
env_file:
- ../stack.env
auth-backend:
container_name: auth-server
image: hicsail/auth-server:latest
restart: always
ports:
Expand All @@ -23,13 +26,13 @@ services:
- ../stack.env
auth-postgres:
image: postgres:13
container_name: auth-postgres-staging
container_name: auth-postgres
restart: always
ports:
- 5434:5432
volumes:
- auth-staging:/var/lib/postgresql/data
- auth-production:/var/lib/postgresql/data
env_file:
- ../stack.env
volumes:
auth-staging: ~
auth-production: ~

0 comments on commit 0246061

Please sign in to comment.