Skip to content

Commit 7e7d8f5

Browse files
ci: refactor process-compose
1 parent 7689677 commit 7e7d8f5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

process-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
version: "0.5"
22

3+
is_strict: true
4+
5+
disable_env_expansion: true
6+
37
log_location: /tmp/process-compose.log
48
log_level: info # trace / debug / info / warn / error / fatal / panic
59
log_configuration:
@@ -9,10 +13,6 @@ log_configuration:
913
max_backups: 3 # number of rolled files to keep
1014
compress: true
1115

12-
is_strict: true
13-
14-
disable_env_expansion: true
15-
1616
processes:
1717
flask:
1818
command: flask --app main run
@@ -42,11 +42,11 @@ processes:
4242
is_tty: false
4343
environment:
4444
- CONTAINER_NAME=${CONTAINER_NAME:-devbox-postgres}
45-
- VERSION=${VERSION:-16.3}
45+
- VERSION=${VERSION:-17.4}
4646
- PORT=${PORT:-5432}
4747
- POSTGRES_DB=${DB_NAME:-postgres}
4848
- POSTGRES_USER=${DB_USER:-postgres}
49-
- POSTGRES_PASSWORD=${DB_PASS?}
49+
- POSTGRES_PASSWORD=${DB_PASS:-postgres}
5050
readiness_probe:
5151
exec:
5252
command: >

0 commit comments

Comments
 (0)