Removed cron container from debug build

This commit is contained in:
Jef Roosens 2021-04-17 21:39:29 +02:00
parent 2c8f1ac601
commit a0e55e4830
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
3 changed files with 16 additions and 14 deletions

View file

@ -0,0 +1,14 @@
version: '2.4'
services:
cron:
image: 'chewingbever/fej:latest'
restart: 'always'
entrypoint: 'crond -f'
user: 'root'
healthcheck:
disable: true
environment:
- 'DATABASE_URL=postgres://fej:fej@db:5432/fej'

View file

@ -12,18 +12,6 @@ services:
environment:
- 'DATABASE_URL=postgres://fej:fej@db:5432/fej'
cron:
image: 'chewingbever/fej:latest'
restart: 'always'
entrypoint: 'crond -f'
user: 'root'
healthcheck:
disable: true
environment:
- 'DATABASE_URL=postgres://fej:fej@db:5432/fej'
db:
image: 'postgres:13-alpine'
restart: 'always'
@ -42,6 +30,5 @@ services:
volumes:
- 'db-data:/var/lib/postgresql/data'
volumes:
db-data: