-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
87 lines (81 loc) · 2.32 KB
/
Copy pathdocker-compose.yml
File metadata and controls
87 lines (81 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Docker Compose file for Vapor
#
# Install Docker on your system to run and test
# your Vapor app in a production-like environment.
#
# Note: This file is intended for testing and does not
# implement best practices for a production deployment.
#
# Learn more: https://docs.docker.com/compose/reference/
#
# Build images: docker compose build
# Start app: docker compose up app
# Start database: docker compose up db
# Run migrations: docker compose run migrate
# Stop all: docker compose down (add -v to wipe db)
#
volumes:
db_data:
driver: local
x-shared_environment: &shared_environment
LOG_LEVEL: ${LOG_LEVEL:-info}
DATABASE_HOST: ${DATABASE_HOST}
DATABASE_NAME: ${DATABASE_NAME}
DATABASE_USERNAME: ${DATABASE_USERNAME}
DATABASE_PASSWORD: ${DATABASE_PASSWORD}
JWT_SECRET: ${JWT_SECRET}
JWT_EXPIRATION_SECONDS: ${JWT_EXPIRATION_SECONDS}
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY}
AWS_S3_BUCKET: ${AWS_S3_BUCKET}
SERVER_URL: ${SERVER_URL}
services:
app:
image: ${DOCKERHUB_USERNAME:-euijjang97}/appleacademychallenge6:latest
environment:
<<: *shared_environment
depends_on:
db:
condition: service_healthy
ports:
- '8080:8080'
command: ["serve", "--env", "production", "--hostname", "0.0.0.0", "--port", "8080"]
restart: unless-stopped
migrate:
image: ${DOCKERHUB_USERNAME:-euijjang97}/appleacademychallenge6:latest
environment:
<<: *shared_environment
depends_on:
db:
condition: service_healthy
command: ["migrate", "--yes"]
deploy:
replicas: 0
revert:
image: ${DOCKERHUB_USERNAME:-euijjang97}/appleacademychallenge6:latest
environment:
<<: *shared_environment
depends_on:
db:
condition: service_healthy
command: ["migrate", "--revert", "--yes"]
deploy:
replicas: 0
db:
image: postgres:18-alpine
volumes:
- db_data:/var/lib/postgresql/data
environment:
POSTGRES_USER: admin
POSTGRES_PASSWORD: 258100
POSTGRES_DB: FindU_db
POSTGRES_INITDB_ARGS: "--encoding=UTF8 --locale=C"
ports:
- '5432:5432'
healthcheck:
test: ["CMD-SHELL", "pg_isready -U admin -d FindU_db"]
interval: 5s
timeout: 5s
retries: 5
restart: unless-stopped
shm_size: 128mb