This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
authapp/docker-compose.yml
AndrewTrieu c9f31e5c8a First commit
2023-04-21 13:17:50 +03:00

35 lines
639 B
YAML

version: "3.4"
services:
drill-and-practice:
build: authserver
image: authserver
restart: "no"
volumes:
- ./authserver/:/app
ports:
- 7777:7777
depends_on:
- database
- flyway
env_file:
- project.env
database:
container_name: database-p2-e8774b8e-c7a9-4cce-a779-3b59be02206d
image: postgres:14.1
restart: "no"
env_file:
- project.env
flyway:
image: flyway/flyway:9.11.0-alpine
depends_on:
- database
volumes:
- .:/flyway/sql
command: -connectRetries=60 -baselineOnMigrate=true migrate
env_file:
- project.env