16 lines
297 B
YAML
16 lines
297 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
ports:
|
|
- "3000:80"
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
depends_on:
|
|
- frontend
|
|
restart: always
|
|
|
|
frontend:
|
|
image: git.aranroig.com/syndria98/vault-${VAULT_NAME}:latest
|
|
restart: always |