Fix api nginx docker image version
parent
c88028ada1
commit
ed481e2605
|
@ -8,6 +8,7 @@ services:
|
||||||
target: production
|
target: production
|
||||||
args:
|
args:
|
||||||
DOMAIN: $DOMAIN
|
DOMAIN: $DOMAIN
|
||||||
|
NGINX_ALPINE_IMG:
|
||||||
container_name: isard-sso-api
|
container_name: isard-sso-api
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
FROM nginx:alpine as production
|
ARG NGINX_ALPINE_IMG
|
||||||
|
FROM $NGINX_ALPINE_IMG as production
|
||||||
MAINTAINER isard <info@isard.com>
|
MAINTAINER isard <info@isard.com>
|
||||||
|
|
||||||
RUN apk add --no-cache python3 py3-pip
|
RUN apk add --no-cache python3 py3-pip
|
||||||
|
|
|
@ -39,4 +39,5 @@ POSTGRES_PASSWORD=postgrespostgres
|
||||||
POSTGRES_USER=admin
|
POSTGRES_USER=admin
|
||||||
|
|
||||||
## DOCKER IMAGES
|
## DOCKER IMAGES
|
||||||
|
NGINX_ALPINE_IMG=nginx:1.21.6-alpine
|
||||||
POSTGRES_BACKUP_LOCAL_IMG=14-debian-2aa03d1
|
POSTGRES_BACKUP_LOCAL_IMG=14-debian-2aa03d1
|
||||||
|
|
Loading…
Reference in New Issue